|
20 | 20 | 'cast_spaces' => ['space' => 'none'], |
21 | 21 | 'concat_space' => ['spacing' => 'one'], |
22 | 22 | 'compact_nullable_typehint' => true, |
| 23 | + 'declare_equal_normalize' => ['space' => 'single'], |
| 24 | + 'general_phpdoc_annotation_remove' => [ |
| 25 | + 'annotations' => [ |
| 26 | + 'author', |
| 27 | + 'package', |
| 28 | + ], |
| 29 | + ], |
23 | 30 | 'increment_style' => ['style' => 'post'], |
24 | 31 | 'list_syntax' => ['syntax' => 'short'], |
25 | 32 | 'echo_tag_syntax' => ['format' => 'long'], |
|
33 | 40 | 'method_argument_space' => ['on_multiline' => 'ensure_fully_multiline'], |
34 | 41 | 'ordered_imports' => [ |
35 | 42 | 'sort_algorithm' => 'alpha', |
36 | | - 'imports_order' => ['class', 'const', 'function'] |
| 43 | + 'imports_order' => ['class', 'const', 'function'], |
37 | 44 | ], |
38 | 45 | 'single_line_throw' => false, |
| 46 | + 'declare_strict_types' => false, |
| 47 | + 'blank_line_between_import_groups' => true, |
39 | 48 | 'fully_qualified_strict_types' => true, |
40 | | - 'global_namespace_import' => false, |
| 49 | + 'no_null_property_initialization' => false, |
| 50 | + 'operator_linebreak' => [ |
| 51 | + 'only_booleans' => true, |
| 52 | + 'position' => 'beginning', |
| 53 | + ], |
| 54 | + 'global_namespace_import' => [ |
| 55 | + 'import_classes' => true, |
| 56 | + 'import_constants' => null, |
| 57 | + 'import_functions' => null |
| 58 | + ] |
41 | 59 | ] |
42 | 60 | ) |
43 | 61 | ->setFinder( |
|
0 commit comments