ShortVariable
Since: 0.2
Detects when a field, local, or parameter has a very short name.
Example
class Something {
private $q = 15;
public static function main( array $as ) {
$r = 20 + $this->q;
for (int $i = 0; $i < 10; $i++) {
$r += $this->q;
}
}
}