12345678910111213141516171819202122232425262728 |
- ===================================
- Rule ``long_to_shorthand_operator``
- ===================================
- Shorthand notation for operators should be used if possible.
- Examples
- --------
- Example #1
- ~~~~~~~~~~
- .. code-block:: diff
- --- Original
- +++ New
- <?php
- -$i = $i + 10;
- +$i += 10;
- Rule sets
- ---------
- The rule is part of the following rule sets:
- - `@PhpCsFixer <./../../ruleSets/PhpCsFixer.rst>`_
- - `@Symfony <./../../ruleSets/Symfony.rst>`_
|