phplrt/phplrt

View on GitHub
libs/lexer/src/Token/UnknownToken.php

Summary

Maintainability
A
0 mins
Test Coverage

Avoid using static access to class '\Phplrt\Lexer\Printer\PrettyPrinter' in method '__toString'.
Open

        $instance = PrettyPrinter::getInstance();
Severity: Minor
Found in libs/lexer/src/Token/UnknownToken.php by phpmd

StaticAccess

Since: 1.4.0

Static access causes unexchangeable dependencies to other classes and leads to hard to test code. Avoid using static access at all costs and instead inject dependencies through the constructor. The only case when static access is acceptable is when used for factory methods.

Example

class Foo
{
    public function bar()
    {
        Bar::baz();
    }
}

Source https://phpmd.org/rules/cleancode.html#staticaccess

Arguments with default values must be at the end of the argument list
Open

        private readonly string $name = self::UNKNOWN_NAME,

Line indented incorrectly; expected 4 spaces, found 8
Open

        private readonly int $offset = 0,

Line indented incorrectly; expected 4 spaces, found 8
Open

        private readonly string $name = self::UNKNOWN_NAME,

Line indented incorrectly; expected 4 spaces, found 8
Open

        private readonly string $value,

There are no issues that match your filters.

Category
Status