You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .php-cs-fixer.dist.php
+1
Original file line number
Diff line number
Diff line change
@@ -24,6 +24,7 @@
24
24
'modernize_types_casting' => true, // Replaces intval, floatval, doubleval, strval and boolval function calls with according type casting operator.
25
25
'multiline_whitespace_before_semicolons' => true, // Forbid multi-line whitespace before the closing semicolon or move the semicolon to the new line for chained calls.
26
26
'no_unreachable_default_argument_value' => true, // In function arguments there must not be arguments with default values before non-default ones.
27
+
'no_superfluous_phpdoc_tags' => ['allow_mixed' => true],// To avoid problems of compatibility with the old php-cs-fixer version used on PHP 7.3
27
28
'no_useless_else' => true,
28
29
'no_useless_return' => true,
29
30
'ordered_class_elements' => true, // Orders the elements of classes/interfaces/traits.
0 commit comments