11 lines
269 B
PHP
11 lines
269 B
PHP
<?php declare(strict_types=1);
|
|
|
|
use PhpStyler\Config;
|
|
use PhpStyler\Files;
|
|
use PhpStyler\Styler;
|
|
|
|
return new Config(
|
|
files: new Files(__DIR__ . '/src', __DIR__ . '/config', __DIR__ . '/public'),
|
|
styler: new Styler,
|
|
cache: __DIR__ . '/.php-styler.cache',
|
|
);
|