-
Notifications
You must be signed in to change notification settings - Fork 1
/
.php_cs.php
83 lines (78 loc) · 2.69 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
<?php
/*
* This file is part of the Active Collab DatabaseConnection.
*
* (c) A51 doo <[email protected]>
*
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
*/
$header = <<<EOF
This file is part of the Active Collab DatabaseConnection.
(c) A51 doo <[email protected]>
This source file is subject to the MIT license that is bundled
with this source code in the file LICENSE.
EOF;
return (new PhpCsFixer\Config('psr2'))->setRules(
[
'header_comment' => [
'header' => $header,
'location' => 'after_open',
],
'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' => false,
'trailing_comma_in_multiline_array' => true,
'no_leading_namespace_whitespace' => true,
'no_blank_lines_after_class_opening' => true,
'no_blank_lines_after_phpdoc' => true,
'phpdoc_scalar' => true,
'phpdoc_summary' => true,
'self_accessor' => false,
'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_blank_line_at_eof' => true,
'single_line_after_imports' => true,
'single_quote' => true,
'phpdoc_separation' => false,
'phpdoc_no_package' => false,
'no_mixed_echo_print' => false,
'concat_space' => false,
'simplified_null_return' => false,
'blank_line_before_return' => true,
'class_attributes_separation' => [
'elements' => [],
],
'linebreak_after_opening_tag' => true,
'native_function_casing' => true,
'no_closing_tag' => true,
'no_empty_comment' => true,
'no_empty_statement' => true,
'no_leading_import_slash' => true,
'lowercase_constants' => true,
'lowercase_cast' => true,
'lowercase_keywords' => true,
]
)->setFinder(
(new PhpCsFixer\Finder())->in(
[
__DIR__ . '/src',
__DIR__ . '/test',
]
)
);