Code Inspection: Assignment can be replaced with increment or decrement
Configure inspections: Settings | Editor | Inspections
Show intention actions: AltEnter
Reports the assignments that can be replaced with incrementing (++
) or decrementing (--
) operations.
In the following example, the assignment expression is replaced with the incrementing prefix expression.
Before the quick-fix
$myVar = $myVar + 1;
After the quick-fix
++$myVar;
Place the caret at the highlighted line and press AltEnter or click
.
Click the arrow next to the inspection you want to suppress and select the necessary suppress action.