From f346a51748455f58c4936744b04817b33c6582cf Mon Sep 17 00:00:00 2001 From: Franz Liedke Date: Sun, 11 Nov 2018 23:52:47 +0100 Subject: [PATCH] Remove unused default constructor --- framework/core/src/Foundation/Site.php | 9 --------- 1 file changed, 9 deletions(-) diff --git a/framework/core/src/Foundation/Site.php b/framework/core/src/Foundation/Site.php index 04d6eddfa..1a45d55c8 100644 --- a/framework/core/src/Foundation/Site.php +++ b/framework/core/src/Foundation/Site.php @@ -16,15 +16,6 @@ use RuntimeException; class Site { - public static function fromDefaultBase($basePath) - { - return static::fromPaths([ - 'base' => $basePath, - 'public' => "$basePath/public", - 'storage' => "$basePath/storage", - ]); - } - /** * @param array $paths * @return SiteInterface