12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- ======================
- Rule ``self_accessor``
- ======================
- Inside class or interface element ``self`` should be preferred to the class name
- itself.
- .. warning:: Using this rule is risky.
- Risky when using dynamic calls like get_called_class() or late static
- binding.
- Examples
- --------
- Example #1
- ~~~~~~~~~~
- .. code-block:: diff
- --- Original
- +++ New
- @@ -2,10 +2,10 @@
- class Sample
- {
- const BAZ = 1;
- - const BAR = Sample::BAZ;
- + const BAR = self::BAZ;
- public function getBar()
- {
- - return Sample::BAR;
- + return self::BAR;
- }
- }
- Rule sets
- ---------
- The rule is part of the following rule sets:
- @PhpCsFixer:risky
- Using the `@PhpCsFixer:risky <./../../ruleSets/PhpCsFixerRisky.rst>`_ rule set will enable the ``self_accessor`` rule.
- @Symfony:risky
- Using the `@Symfony:risky <./../../ruleSets/SymfonyRisky.rst>`_ rule set will enable the ``self_accessor`` rule.
|