10 lines
235 B
PHP
10 lines
235 B
PHP
<?php declare(strict_types=1);
|
|
|
|
$finder = PhpCsFixer\Finder::create();
|
|
$finder->in(['src', 'tests', 'public']);
|
|
|
|
$config = PhpCsFixer\Config::create();
|
|
$config->setFinder($finder);
|
|
$config->setRules(['@PSR2' => true]);
|
|
|
|
return $config; |