#1 - skeleton polishing

This commit is contained in:
Krzysztof Rewak
2022-01-11 15:02:00 +01:00
committed by Krzysztof Rewak
parent 262d37d862
commit 2e13df23fb
17 changed files with 1325 additions and 65 deletions

View File

@@ -5,9 +5,9 @@ declare(strict_types=1);
use Blumilk\Codestyle\Config;
use Blumilk\Codestyle\Configuration\Defaults\LaravelPaths;
$paths = (new LaravelPaths())->add("public", "bootstrap/app.php", "ecs.php");
$paths = new LaravelPaths();
$config = new Config(
paths: $paths,
paths: $paths->add("public", "bootstrap/app.php", "ecs.php", "server.php"),
);
return $config->config();