From 24075bd50e697009bbf12dcaa441756c718d7183 Mon Sep 17 00:00:00 2001 From: Fred Bradley Date: Tue, 30 Jul 2024 15:44:53 +0100 Subject: [PATCH] refactor: remove the need for a default method if we are using a global function --- src/Contracts/Institution.php | 1 - 1 file changed, 1 deletion(-) diff --git a/src/Contracts/Institution.php b/src/Contracts/Institution.php index de9b20d..f0561a8 100644 --- a/src/Contracts/Institution.php +++ b/src/Contracts/Institution.php @@ -8,5 +8,4 @@ interface Institution * Define the name used to identify this Schools entry in the config. */ public function getConfigName(): string; - public static function default(): Institution; }