Skip to content

Latest commit

 

History

History
47 lines (34 loc) · 1.28 KB

no_unreachable_default_argument_value.rst

File metadata and controls

47 lines (34 loc) · 1.28 KB

Rule no_unreachable_default_argument_value

In function arguments there must not be arguments with default values before non-default ones.

Warning

Using this rule is risky

Modifies the signature of functions; therefore risky when using systems (such as some Symfony components) that rely on those (for example through reflection).

Examples

Example #1

--- Original
+++ New
 <?php
-function example($foo = "two words", $bar) {}
+function example($foo, $bar) {}

Rule sets

The rule is part of the following rule sets:

Source class

PhpCsFixer\Fixer\FunctionNotation\NoUnreachableDefaultArgumentValueFixer