efureev/u.php

View on GitHub
src/uTime.php

Summary

Maintainability
A
0 mins
Test Coverage

The class uTime is not named in CamelCase.
Open

class uTime
{

    /**
     * Return time list
Severity: Minor
Found in src/uTime.php by phpmd

CamelCaseClassName

Since: 0.2

It is considered best practice to use the CamelCase notation to name classes.

Example

class class_name {
}

Source

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

            $m = floor($value % 60);
Severity: Minor
Found in src/uTime.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

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

            $h = floor($value / 60);
Severity: Minor
Found in src/uTime.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

Inline control structures are not allowed
Open

            if (strlen($h) === 1) $h = '0' . $h;
Severity: Minor
Found in src/uTime.php by phpcodesniffer

Inline control structures are not allowed
Open

            if (strlen($m) === 1) $m = '0' . $m;
Severity: Minor
Found in src/uTime.php by phpcodesniffer

Class name "uTime" is not in camel caps format
Open

class uTime
Severity: Minor
Found in src/uTime.php by phpcodesniffer

There are no issues that match your filters.

Category
Status