-
Notifications
You must be signed in to change notification settings - Fork 2
/
.php_cs
46 lines (43 loc) · 1015 Bytes
/
.php_cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<?php
use Symfony\CS\Finder\DefaultFinder;
use Symfony\CS\Config\Config;
$finder = DefaultFinder::create()
->files()
->name('*.php')
->in(__DIR__)
;
return Config::create()
->fixers(array(
'psr0',
'encoding',
'short_tag',
'braces',
'elseif',
'eof_ending',
'function_declaration',
'indentation',
'line_after_namespace',
'linefeed',
'lowercase_constants',
'lowercase_keywords',
'multiple_use',
'php_closing_tag',
'trailing_spaces',
'visibility',
'duplicate_semicolon',
'extra_empty_lines',
'include',
'namespace_no_leading_whitespace',
'object_operator',
'operators_spaces',
'phpdoc_params',
'return',
'single_array_no_trailing_comma',
'spaces_cast',
'standardize_not_equal',
'ternary_spaces',
'unused_use',
'whitespacy_lines',
))
->finder($finder)
;