forked from openemr/openemr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.php_cs
128 lines (124 loc) · 4.17 KB
/
.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
<?php
use Symfony\CS\Config\Config;
use Symfony\CS\Finder\DefaultFinder;
use Symfony\CS\FixerInterface;
// Files and directories that will be scanned
$finder = DefaultFinder::create()
->exclude(['vendor','Documentation','gacl','images','tests'])
->in(__DIR__);
// CS issues to fix
$config = Config::create()
->level(FixerInterface::NONE_LEVEL)
->fixers(
[
//PSR-0
// 'psr0',
//PSR-1
'encoding',
// '-short_tag',
//PSR-2
'braces',
'class_definition',
// '-elseif',
'eof_ending',
// '-function_call_space',
// '-function_declaration',
'indentation',
// '-line_after_namespace',
'linefeed',
'lowercase_constants',
'lowercase_keywords',
// '-method_argument_space',
// '-multiple_use',
'no_trailing_whitespace_in_comment',
'parenthesis',
// '-php_closing_tag',
'single_line_after_imports',
// '-switch_case_semicolon_to_colon',
// '-switch_case_space',
'trailing_spaces',
// '-visibility',
//SYMFONY
// 'array_element_no_space_before_comma',
// 'array_element_white_space_after_comma',
// 'blankline_after_open_tag',
// 'concat_without_spaces',
// 'double_arrow_multiline_whitespaces',
// 'duplicate_semicolon',
// 'empty_return',
// 'extra_empty_lines',
// 'function_typehint_space',
// 'include',
// 'join_function',
// 'list_commas',
// 'multiline_array_trailing_comma',
// 'namespace_no_leading_whitespace',
// 'new_with_braces',
// 'no_blank_lines_after_class_opening',
// 'no_empty_lines_after_phpdocs',
// 'object_operator',
// 'operators_spaces',
// 'phpdoc_indent',
// 'phpdoc_inline_tag',
// 'phpdoc_no_access',
// 'phpdoc_no_empty_return',
// 'phpdoc_no_package',
// 'phpdoc_params',
// 'phpdoc_scalar',
// 'phpdoc_separation',
// 'phpdoc_short_description',
// 'phpdoc_to_comment',
// 'phpdoc_trim',
// 'phpdoc_type_to_var',
// 'phpdoc_types',
// 'phpdoc_var_without_name',
// 'pre_increment',
// 'print_to_echo',
// 'remove_leading_slash_use',
// 'remove_lines_between_uses',
// 'return',
// 'self_accessor',
// 'short_bool_cast',
// 'single_array_no_trailing_comma',
// 'single_blank_line_before_namespace',
// 'single_quote',
// 'spaces_before_semicolon',
// 'spaces_cast',
// 'standardize_not_equal',
// 'ternary_spaces',
// 'trim_array_spaces',
// 'unalign_double_arrow',
// 'unalign_equals',
// 'unary_operators_spaces',
// 'unneeded_control_parentheses',
// 'unused_use',
'whitespacy_lines',
//CONTRIB
// 'align_double_arrow',
// 'align_equals',
// 'concat_with_spaces',
// 'echo_to_print',
// 'ereg_to_preg',
// 'header_comment',
// 'logical_not_operators_with_spaces',
// 'logical_not_operators_with_successor_space',
// 'long_array_syntax',
// 'multiline_spaces_before_semicolon',
// 'newline_after_open_tag',
// 'no_blank_lines_before_namespace',
// 'ordered_use',
// 'php4_constructor',
// 'php_unit_construct',
// 'php_unit_strict',
// 'phpdoc_order',
// 'phpdoc_var_to_type',
// 'short_array_syntax',
// 'short_echo_tag',
// 'strict',
// 'strict_param'
]
)
->setUsingLinter(true)
->setUsingCache(true)
->finder($finder);
return $config;