blob: 8d61ee2592438d21f419bd54564e47c2318b770d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
<?php
$config = PhpCsFixer\Config::create();
$config->getFinder()
->exclude('vendor')
->in(__DIR__);
$config->setRules([
'@PSR1' => true,
'@Symfony' =>true
]);
return $config;
|