-
Notifications
You must be signed in to change notification settings - Fork 2
/
.php_cs.php
66 lines (62 loc) · 2.16 KB
/
.php_cs.php
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
<?php
/*
* This file is part of the Active Collab DatabaseStructure project.
*
* (c) A51 doo <[email protected]>. All rights reserved.
*/
$header = <<<EOF
This file is part of the Active Collab DatabaseStructure project.
(c) A51 doo <[email protected]>. All rights reserved.
EOF;
return (new PhpCsFixer\Config('psr2'))
->setRiskyAllowed(true)
->setRules([
'header_comment' => [
'header' => $header,
'location' => 'after_open',
],
'function_typehint_space' => true,
'method_argument_space' => true,
'no_trailing_whitespace' => true,
'no_whitespace_before_comma_in_array' => true,
'whitespace_after_comma_in_array' => true,
'no_multiline_whitespace_around_double_arrow' => true,
'hash_to_slash_comment' => true,
'include' => true,
'no_alias_functions' => true,
'trailing_comma_in_multiline_array' => true,
'no_leading_namespace_whitespace' => true,
'no_blank_lines_after_phpdoc' => true,
'phpdoc_scalar' => true,
'phpdoc_summary' => true,
'self_accessor' => true,
'no_trailing_comma_in_singleline_array' => true,
'single_blank_line_before_namespace' => true,
'space_after_semicolon' => true,
'no_singleline_whitespace_before_semicolons' => true,
'cast_spaces' => true,
'standardize_not_equals' => true,
'ternary_operator_spaces' => true,
'trim_array_spaces' => true,
'no_unused_imports' => true,
'no_whitespace_in_blank_line' => true,
'ordered_imports' => true,
'array_syntax' => ['syntax' => 'short'],
'phpdoc_align' => true,
'return_type_declaration' => true,
'single_quote' => true,
'phpdoc_separation' => false,
'phpdoc_no_package' => false,
'no_mixed_echo_print' => false,
'concat_space' => false,
'simplified_null_return' => false,
'single_blank_line_at_eof' => true,
])
->setFinder(
(new PhpCsFixer\Finder())->in(
[
__DIR__ . '/src',
__DIR__ . '/test',
]
)
);