migrations/v310_m1_remove_data.php
Method abbc3_bbcodes
has 57 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
public function abbc3_bbcodes()
{
return array(
// These exist in core
'b',
Avoid excessively long variable names like $abbc3_bbcode_deprecated. Keep variable name length under 20. Open
Open
$abbc3_bbcode_deprecated = $this->abbc3_bbcodes();
- Read upRead up
- Exclude checks
LongVariable
Since: 0.2
Detects when a field, formal or local variable is declared with a long name.
Example
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++ ) {
}
}
}