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
For better readability, do not put multiple property declarations in the same statement.
<?php class Foo { private $bar = 1, $bar2 = 2; }
<?php class Foo { private $bar1 = 1; private $bar2 = 2; }