1 | <?php |
||
2 | |||
3 | declare(strict_types=1); |
||
4 | |||
5 | use function Bytic\Phpqa\PhpCsFixer\config; |
||
6 | use function Bytic\Phpqa\PhpCsFixer\finder; |
||
7 | |||
8 | return config( |
||
9 | finder( |
||
0 ignored issues
–
show
Bug
introduced
by
![]() |
|||
10 | [ |
||
11 | __DIR__ . '/legacy', |
||
12 | __DIR__ . '/src', |
||
13 | __DIR__ . '/tests', |
||
14 | ] |
||
15 | ) |
||
16 | ); |
||
17 |