librenms/librenms

View on GitHub
LibreNMS/Enum/PortAssociationMode.php

Summary

Maintainability
A
0 mins
Test Coverage

Avoid variables with short names like $id. Configured minimum length is 3.
Open

    public static function getName(int $id): ?string
Severity: Minor
Found in LibreNMS/Enum/PortAssociationMode.php by phpmd

ShortVariable

Since: 0.2

Detects when a field, local, or parameter has a very short name.

Example

class Something {
    private $q = 15; // VIOLATION - Field
    public static function main( array $as ) { // VIOLATION - Formal
        $r = 20 + $this->q; // VIOLATION - Local
        for (int $i = 0; $i < 10; $i++) { // Not a Violation (inside FOR)
            $r += $this->q;
        }
    }
}

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

Class constants must be uppercase; expected IFNAME but found ifName
Open

    const ifName = 2;

Class constants must be uppercase; expected IFALIAS but found ifAlias
Open

    const ifAlias = 4;

Class constants must be uppercase; expected IFINDEX but found ifIndex
Open

    const ifIndex = 1;

Class constants must be uppercase; expected IFDESCR but found ifDescr
Open

    const ifDescr = 3;

Constant ifDescr should be defined in uppercase
Open

    const ifDescr = 3;
Severity: Minor
Found in LibreNMS/Enum/PortAssociationMode.php by phpmd

ConstantNamingConventions

Since: 0.2

Class/Interface constant names should always be defined in uppercase.

Example

class Foo {
    const MY_NUM = 0; // ok
    const myTest = ""; // fail
}

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

Constant ifIndex should be defined in uppercase
Open

    const ifIndex = 1;
Severity: Minor
Found in LibreNMS/Enum/PortAssociationMode.php by phpmd

ConstantNamingConventions

Since: 0.2

Class/Interface constant names should always be defined in uppercase.

Example

class Foo {
    const MY_NUM = 0; // ok
    const myTest = ""; // fail
}

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

Constant ifAlias should be defined in uppercase
Open

    const ifAlias = 4;
Severity: Minor
Found in LibreNMS/Enum/PortAssociationMode.php by phpmd

ConstantNamingConventions

Since: 0.2

Class/Interface constant names should always be defined in uppercase.

Example

class Foo {
    const MY_NUM = 0; // ok
    const myTest = ""; // fail
}

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

Constant ifName should be defined in uppercase
Open

    const ifName = 2;
Severity: Minor
Found in LibreNMS/Enum/PortAssociationMode.php by phpmd

ConstantNamingConventions

Since: 0.2

Class/Interface constant names should always be defined in uppercase.

Example

class Foo {
    const MY_NUM = 0; // ok
    const myTest = ""; // fail
}

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

There are no issues that match your filters.

Category
Status