-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.php_cs.dist
105 lines (103 loc) · 3.4 KB
/
.php_cs.dist
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
<?php
return \PhpCsFixer\Config::create()
->setRiskyAllowed(true)
->setRules([
'@Symfony' => true,
'@Symfony:risky' => true,
'@PHP71Migration' => true,
'@PHP73Migration' => true,
'concat_space' => ['spacing' => 'one'],
'phpdoc_summary' => false,
'no_short_echo_tag' => true,
'no_useless_else' => true,
'is_null' => true,
'no_multiline_whitespace_before_semicolons' => true,
'no_null_property_initialization' => true,
'list_syntax' => ['syntax' => 'short'],
'array_syntax' => ['syntax' => 'short'],
'strict_comparison' => true,
'strict_param' => true,
'declare_strict_types' => true,
'ordered_class_elements' => true,
'date_time_immutable' => true,
'no_unused_imports' => true,
'ordered_imports' => ['sort_algorithm' => 'alpha'],
'no_trailing_comma_in_singleline_array' => true,
'trailing_comma_in_multiline_array' => true,
'whitespace_after_comma_in_array' => true,
'native_function_invocation' => [
'include' => ['@compiler_optimized']
],
'method_argument_space' => [
'on_multiline' => 'ensure_fully_multiline'
],
'fully_qualified_strict_types' => true,
'no_unreachable_default_argument_value' => true,
'static_lambda' => true,
'no_superfluous_phpdoc_tags' => false,
'single_line_throw' => false,
'blank_line_before_statement' => [
'statements' => [
'break',
'continue',
'declare',
'do',
'for',
'foreach',
'if',
'include',
'include_once',
'require',
'require_once',
'return',
'switch',
'throw',
'try',
'while',
'yield',
],
],
'compact_nullable_typehint' => true,
'final_static_access' => true,
'global_namespace_import' => [
'import_classes' => true,
'import_constants' => true,
'import_functions' => true,
],
'logical_operators' => true,
'native_constant_invocation' => false,
'no_alternative_syntax' => true,
'no_unset_cast' => true,
'no_useless_return' => true,
'nullable_type_declaration_for_default_null_value' => true,
'ordered_interfaces' => true,
'phpdoc_align' => [
'align' => 'left',
],
'php_unit_dedicate_assert' => true,
'php_unit_method_casing' => [
'case' => 'snake_case',
],
'php_unit_set_up_tear_down_visibility' => true,
'php_unit_strict' => true,
'php_unit_ordered_covers' => true,
'php_unit_test_annotation' => [
'case' => 'snake',
'style' => 'prefix',
],
'php_unit_test_case_static_method_calls' => [
'call_type' => 'self',
],
'phpdoc_no_empty_return' => true,
'phpdoc_order' => true,
'self_static_accessor' => true,
'yoda_style' => [
'equal' => false,
'identical' => true,
'less_and_greater' => false,
],
])
->setFinder(
\PhpCsFixer\Finder::create()
->in(['src'])
);