|
16 | 16 | 'is_null' => true, |
17 | 17 | 'method_argument_space' => ['on_multiline' => 'ensure_fully_multiline'], |
18 | 18 | 'native_constant_invocation' => true, |
19 | | - 'native_function_invocation' => [ |
20 | | - 'include' => ['@all'], |
21 | | - ], |
| 19 | + 'native_function_invocation' => false, |
22 | 20 | 'no_alias_functions' => true, |
23 | 21 | 'no_useless_else' => true, |
24 | 22 | 'nullable_type_declaration_for_default_null_value' => true, |
25 | 23 | 'ordered_imports' => true, |
26 | 24 | 'php_unit_dedicate_assert' => ['target' => 'newest'], |
27 | 25 | 'php_unit_test_class_requires_covers' => false, |
28 | | - 'phpdoc_order' => true, |
| 26 | + 'phpdoc_order' => false, |
29 | 27 | 'phpdoc_types_order' => ['null_adjustment' => 'always_last'], |
30 | 28 | 'static_lambda' => true, |
31 | 29 | 'ternary_to_null_coalescing' => true, |
32 | 30 | 'visibility_required' => ['elements' => ['property', 'method', 'const']], |
| 31 | + 'phpdoc_no_useless_inheritdoc' => false, |
| 32 | + 'no_superfluous_phpdoc_tags' => false, |
| 33 | + 'global_namespace_import' => false, |
| 34 | + 'trailing_comma_in_multiline' => false, |
| 35 | + 'fully_qualified_strict_types' => false, |
| 36 | + 'phpdoc_separation' => false, |
| 37 | + 'new_with_parentheses' => false, |
| 38 | + 'escape_implicit_backslashes' => false, |
| 39 | + 'declare_strict_types' => false, |
| 40 | + 'no_unneeded_control_parentheses' => false, |
| 41 | + 'string_implicit_backslashes' => false, |
| 42 | + 'phpdoc_no_alias_tag' => ['replacements' => ['type' => 'var', 'link' => 'see']], |
| 43 | + 'yoda_style' => false, |
| 44 | + 'curly_braces_position' => false, |
| 45 | + 'braces_position' => false, |
| 46 | + 'no_extra_blank_lines' => false, |
| 47 | + 'blank_line_after_opening_tag' => false, |
| 48 | + 'cast_spaces' => false, |
| 49 | + 'native_constant_invocation' => false, |
| 50 | + 'single_line_throw' => false, |
| 51 | + 'declare_parentheses' => false, |
| 52 | + 'class_attributes_separation' => false, |
| 53 | + 'linebreak_after_opening_tag' => false, |
| 54 | + 'declare_equal_normalize' => false, |
| 55 | + 'blank_line_between_import_groups' => false, |
| 56 | + 'single_quote' => false, |
| 57 | + 'ordered_class_elements' => false, |
33 | 58 | ]) |
34 | 59 | ; |
0 commit comments