| 1234567891011121314151617181920212223242526272829303132333435 |
- =====================
- Rule ``dir_constant``
- =====================
- Replaces ``dirname(__FILE__)`` expression with equivalent ``__DIR__`` constant.
- .. warning:: Using this rule is risky.
- Risky when the function ``dirname`` is overridden.
- Examples
- --------
- Example #1
- ~~~~~~~~~~
- .. code-block:: diff
- --- Original
- +++ New
- @@ -1,2 +1,2 @@
- <?php
- -$a = dirname(__FILE__);
- +$a = __DIR__;
- Rule sets
- ---------
- The rule is part of the following rule sets:
- @Symfony:risky
- Using the ``@Symfony:risky`` rule set will enable the ``dir_constant`` rule.
- @PhpCsFixer:risky
- Using the ``@PhpCsFixer:risky`` rule set will enable the ``dir_constant`` rule.
|