12345678910111213141516171819202122232425262728 |
- ===============================
- Rule ``standardize_not_equals``
- ===============================
- Replace all ``<>`` with ``!=``.
- Examples
- --------
- Example #1
- ~~~~~~~~~~
- .. code-block:: diff
- --- Original
- +++ New
- <?php
- -$a = $b <> $c;
- +$a = $b != $c;
- Rule sets
- ---------
- The rule is part of the following rule sets:
- - `@PhpCsFixer <./../../ruleSets/PhpCsFixer.rst>`_
- - `@Symfony <./../../ruleSets/Symfony.rst>`_
|