|
18 | 18 | 'header' => $header,
|
19 | 19 | 'location' => 'after_open',
|
20 | 20 | ],
|
21 |
| - 'function_typehint_space' => true, |
22 |
| - 'method_argument_space' => true, |
23 |
| - 'no_trailing_whitespace' => true, |
24 | 21 | 'no_whitespace_before_comma_in_array' => true,
|
25 | 22 | 'whitespace_after_comma_in_array' => true,
|
26 | 23 | 'no_multiline_whitespace_around_double_arrow' => true,
|
27 | 24 | 'hash_to_slash_comment' => true,
|
28 | 25 | 'include' => true,
|
| 26 | + 'no_alias_functions' => false, |
29 | 27 | 'trailing_comma_in_multiline_array' => true,
|
30 | 28 | 'no_leading_namespace_whitespace' => true,
|
| 29 | + 'no_blank_lines_after_class_opening' => true, |
31 | 30 | 'no_blank_lines_after_phpdoc' => true,
|
32 | 31 | 'phpdoc_scalar' => true,
|
33 | 32 | 'phpdoc_summary' => true,
|
34 |
| - 'self_accessor' => true, |
| 33 | + 'self_accessor' => false, |
35 | 34 | 'no_trailing_comma_in_singleline_array' => true,
|
36 | 35 | 'single_blank_line_before_namespace' => true,
|
37 | 36 | 'space_after_semicolon' => true,
|
|
46 | 45 | 'array_syntax' => ['syntax' => 'short'],
|
47 | 46 | 'phpdoc_align' => true,
|
48 | 47 | 'return_type_declaration' => true,
|
| 48 | + 'single_blank_line_at_eof' => true, |
| 49 | + 'single_line_after_imports' => true, |
49 | 50 | 'single_quote' => true,
|
50 | 51 | 'phpdoc_separation' => false,
|
51 | 52 | 'phpdoc_no_package' => false,
|
52 | 53 | 'no_mixed_echo_print' => false,
|
53 | 54 | 'concat_space' => false,
|
54 | 55 | 'simplified_null_return' => false,
|
55 |
| - 'single_blank_line_at_eof' => true, |
| 56 | + 'blank_line_before_return' => true, |
| 57 | + 'class_attributes_separation' => [ |
| 58 | + 'elements' => [], |
| 59 | + ], |
| 60 | + 'linebreak_after_opening_tag' => true, |
| 61 | + 'native_function_casing' => true, |
| 62 | + 'no_closing_tag' => true, |
| 63 | + 'no_empty_comment' => true, |
| 64 | + 'no_empty_statement' => true, |
| 65 | + 'no_leading_import_slash' => true, |
| 66 | + 'lowercase_constants' => true, |
| 67 | + 'lowercase_cast' => true, |
| 68 | + 'lowercase_keywords' => true, |
56 | 69 | ]
|
57 | 70 | )->setFinder((new PhpCsFixer\Finder())->in(
|
58 | 71 | [
|
|
0 commit comments