blob: c5c78a971df6dcd6a2b3458e3d17361f5574db25 (
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;
|