Fork me on GitHub
a Sensio Labs Product

15 Keys Accelerate (v3.54.0) edition

Rule long_to_shorthand_operator

Shorthand notation for operators should be used if possible.

Warning

Using this rule is risky

Risky when applying for string offsets (e.g. <?php $text = "foo"; $text[0] = $text[0] & "\x7F";).

Examples

Example #1

--- Original
+++ New
 <?php
-$i = $i + 10;
+$i += 10;

Rule sets

The rule is part of the following rule sets:

References

The test class defines officially supported behaviour. Each test case is a part of our backward compatibility promise.