Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 591 Bytes

standardize_not_equals.rst

File metadata and controls

30 lines (21 loc) · 591 Bytes

Rule standardize_not_equals

Replace all <> with !=.

Examples

Example #1

--- Original
+++ New
 <?php
-$a = $b <> $c;
+$a = $b != $c;

Rule sets

The rule is part of the following rule sets:

@PhpCsFixer
Using the @PhpCsFixer rule set will enable the standardize_not_equals rule.
@Symfony
Using the @Symfony rule set will enable the standardize_not_equals rule.