Force the usage of {operator}=. E.g.:
-$sum = $sum + 3;
+$sum += 3;
-$string = $string . 'foo';
+$string .= 'foo';
Probably rather .= in the 2nd case? :)
Shit... I would be much easier to add += everywhere ;)
This issue has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs.
Most helpful comment
Shit... I would be much easier to add
+=everywhere ;)