IDE extension that lets you fix coding issues before they exist!
Setup is effortless and analysis is automatic for most languages
Fast, accurate analysis; enterprise scalability
A value that is incremented or decremented and then not stored is at best wasted code and at worst a bug.
$i = 0; $i = $i++; // Noncompliant; i is still zero
$i = 0; $i++;