10 lines
168 B
PHP
10 lines
168 B
PHP
<?php declare(strict_types=1);
|
|
|
|
$config = new phootwork\fixer\Config();
|
|
$config->getFinder()
|
|
->in(__DIR__ . '/src')
|
|
->in(__DIR__ . '/tests')
|
|
;
|
|
|
|
return $config;
|