Pattern: Use of dirname()
Issue: -
This rule will detect and auto-fix two typical code modernizations which can be made related to the dirname()
function:
- Since PHP 5.3, calls to
dirname(__FILE__)
can be replaced by__DIR__
. Errorcode:Modernize.FunctionCalls.Dirname.FileConstant
. - Since PHP 7.0, nested function calls to
dirname()
can be changed to use the$levels
parameter. Errorcode:Modernize.FunctionCalls.Dirname.Nested
.