doctrine-ulid/php-styler.php
lubiana 13bfbbe528
All checks were successful
/ ls (push) Successful in 19s
add implementation
2024-06-01 22:28:11 +02:00

13 lines
277 B
PHP

<?php declare(strict_types=1);
use PhpStyler\Config;
use PhpStyler\Files;
use PhpStyler\Styler;
$paths = (require __DIR__ . '/code-quality-paths.php');
return new Config(
styler: new Styler,
files: new Files(...$paths),
cache: __DIR__ . '/.php-styler.cache',
);