Remove unused default constructor

This commit is contained in:
Franz Liedke 2018-11-11 23:52:47 +01:00
parent 91e8d6820a
commit f346a51748

View File

@ -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