phplrt/phplrt

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

Summary

Maintainability
A
0 mins
Test Coverage

Missing class import via use statement (line '50', column '19').
Open

        throw new \BadMethodCallException(self::class . ' objects are immutable');
Severity: Minor
Found in libs/lexer/src/Token/Composite.php by phpmd

MissingImport

Since: 2.7.0

Importing all external classes in a file through use statements makes them clearly visible.

Example

function make() {
    return new \stdClass();
}

Source http://phpmd.org/rules/cleancode.html#MissingImport

Missing class import via use statement (line '55', column '19').
Open

        throw new \BadMethodCallException(self::class . ' objects are immutable');
Severity: Minor
Found in libs/lexer/src/Token/Composite.php by phpmd

MissingImport

Since: 2.7.0

Importing all external classes in a file through use statements makes them clearly visible.

Example

function make() {
    return new \stdClass();
}

Source http://phpmd.org/rules/cleancode.html#MissingImport

Missing class import via use statement (line '60', column '20').
Open

        return new \ArrayIterator($this->children);
Severity: Minor
Found in libs/lexer/src/Token/Composite.php by phpmd

MissingImport

Since: 2.7.0

Importing all external classes in a file through use statements makes them clearly visible.

Example

function make() {
    return new \stdClass();
}

Source http://phpmd.org/rules/cleancode.html#MissingImport

Avoid unused parameters such as '$offset'.
Open

    public function offsetSet($offset, $value): void
Severity: Minor
Found in libs/lexer/src/Token/Composite.php by phpmd

UnusedFormalParameter

Since: 0.2

Avoid passing parameters to methods or constructors and then not using those parameters.

Example

class Foo
{
    private function bar($howdy)
    {
        // $howdy is not used
    }
}

Source https://phpmd.org/rules/unusedcode.html#unusedformalparameter

Avoid unused parameters such as '$value'.
Open

    public function offsetSet($offset, $value): void
Severity: Minor
Found in libs/lexer/src/Token/Composite.php by phpmd

UnusedFormalParameter

Since: 0.2

Avoid passing parameters to methods or constructors and then not using those parameters.

Example

class Foo
{
    private function bar($howdy)
    {
        // $howdy is not used
    }
}

Source https://phpmd.org/rules/unusedcode.html#unusedformalparameter

Avoid unused parameters such as '$offset'.
Open

    public function offsetUnset($offset): void
Severity: Minor
Found in libs/lexer/src/Token/Composite.php by phpmd

UnusedFormalParameter

Since: 0.2

Avoid passing parameters to methods or constructors and then not using those parameters.

Example

class Foo
{
    private function bar($howdy)
    {
        // $howdy is not used
    }
}

Source https://phpmd.org/rules/unusedcode.html#unusedformalparameter

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

        ChannelInterface $channel = Channel::DEFAULT,

There are no issues that match your filters.

Category
Status