123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- ============================
- Rule ``magic_method_casing``
- ============================
- Magic method definitions and calls must be using the correct casing.
- Examples
- --------
- Example #1
- ~~~~~~~~~~
- .. code-block:: diff
- --- Original
- +++ New
- <?php
- class Foo
- {
- - public function __Sleep()
- + public function __sleep()
- {
- }
- }
- Example #2
- ~~~~~~~~~~
- .. code-block:: diff
- --- Original
- +++ New
- <?php
- -$foo->__INVOKE(1);
- +$foo->__invoke(1);
- Rule sets
- ---------
- The rule is part of the following rule sets:
- - `@PhpCsFixer <./../../ruleSets/PhpCsFixer.rst>`_
- - `@Symfony <./../../ruleSets/Symfony.rst>`_
- References
- ----------
- - Fixer class: `PhpCsFixer\\Fixer\\Casing\\MagicMethodCasingFixer <./../../../src/Fixer/Casing/MagicMethodCasingFixer.php>`_
- - Test class: `PhpCsFixer\\Tests\\Fixer\\Casing\\MagicMethodCasingFixerTest <./../../../tests/Fixer/Casing/MagicMethodCasingFixerTest.php>`_
- The test class defines officially supported behaviour. Each test case is a part of our backward compatibility promise.
|