summaryrefslogtreecommitdiffstats
path: root/.php_cs
blob: 141f75bda314a5f8cbb8903f1cee23ec14cb0636 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?php
$config = Symfony\CS\Config\Config::create();
$config->level(null);
$config->fixers(
    array(
        'indentation',
        'linefeed',
        'trailing_spaces',
        'short_tag',
        'visibility',
        'php_closing_tag',
        'braces',
        'function_declaration',
        'psr0',
        'elseif',
        'eof_ending',
        'unused_use',
    )
);
return $config;