#1 - skeleton polishing (#12)

* #1 - skeleton polishing

* #1 - readme
This commit is contained in:
Krzysztof Rewak
2022-01-12 08:49:22 +01:00
committed by GitHub
parent 262d37d862
commit 2abd83526d
18 changed files with 1346 additions and 77 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();