Skip to content

Latest commit

 

History

History
45 lines (32 loc) · 1.09 KB

combine_nested_dirname.rst

File metadata and controls

45 lines (32 loc) · 1.09 KB

Rule combine_nested_dirname

Replace multiple nested calls of dirname by only one call with second $level parameter. Requires PHP >= 7.0.

Warning

Using this rule is risky

Risky when the function dirname is overridden.

Examples

Example #1

--- Original
+++ New
 <?php
-dirname(dirname(dirname($path)));
+dirname($path, 3);

Rule sets

The rule is part of the following rule sets:

Source class

PhpCsFixer\Fixer\FunctionNotation\CombineNestedDirnameFixer