master
$htmlDataAttributesForSpecificDeviceProperties = [];
Detects when a field, formal or local variable is declared with a long name.
class Something { protected $reallyLongIntName = -3; // VIOLATION - Field public static function main( array $interestingArgumentsList[] ) { // VIOLATION - Formal $otherReallyLongName = -5; // VIOLATION - Local for ($interestingIntIndex = 0; // VIOLATION - For $interestingIntIndex < 10; $interestingIntIndex++ ) { } }}