From b980c6fb7d956d4952ffdaf1ba06b35f9b92d83e 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 --- src/Foundation/Site.php | 9 --------- 1 file changed, 9 deletions(-) diff --git a/src/Foundation/Site.php b/src/Foundation/Site.php index 04d6eddfa..1a45d55c8 100644 --- a/src/Foundation/Site.php +++ b/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