123456789101112131415161718192021222324252627282930 |
- ===============================
- 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
- Using the `@PhpCsFixer <./../../ruleSets/PhpCsFixer.rst>`_ rule set will enable the ``standardize_not_equals`` rule.
- @Symfony
- Using the `@Symfony <./../../ruleSets/Symfony.rst>`_ rule set will enable the ``standardize_not_equals`` rule.
|