iMattPro/abbc3

View on GitHub
migrations/v310_m1_remove_data.php

Summary

Maintainability
A
2 hrs
Test Coverage

Method abbc3_bbcodes has 57 lines of code (exceeds 25 allowed). Consider refactoring.
Open

    public function abbc3_bbcodes()
    {
        return array(
            // These exist in core
            'b',
Severity: Major
Found in migrations/v310_m1_remove_data.php - About 2 hrs to fix

    Avoid excessively long variable names like $abbc3_bbcode_deprecated. Keep variable name length under 20.
    Open

            $abbc3_bbcode_deprecated = $this->abbc3_bbcodes();
    Severity: Minor
    Found in migrations/v310_m1_remove_data.php by phpmd

    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++ ) {
            }
        }
    }

    Source https://phpmd.org/rules/naming.html#longvariable

    There are no issues that match your filters.

    Category
    Status