Remove unused default constructor

This commit is contained in:
Franz Liedke 2018-11-11 23:52:47 +01:00
parent 66404e1f61
commit b980c6fb7d
No known key found for this signature in database
GPG Key ID: 9A0231A879B055F4

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