src/Pug/Filter/AbstractFilter.php

Summary

Maintainability
A
0 mins
Test Coverage
A
100%

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

        throw new \RuntimeException('->getNodeString is no longer supported since you get now contents as a string.');
Severity: Minor
Found in src/Pug/Filter/AbstractFilter.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 '23', column '19').
Open

        throw new \RuntimeException('Pug\Filter\FilterInterface is no longer supported. Now use Pug\FilterInterface instead.');
Severity: Minor
Found in src/Pug/Filter/AbstractFilter.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 '$node'.
Open

    public function __invoke(Filter $node, Compiler $compiler)
Severity: Minor
Found in src/Pug/Filter/AbstractFilter.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 '$compiler'.
Open

    public function __invoke(Filter $node, Compiler $compiler)
Severity: Minor
Found in src/Pug/Filter/AbstractFilter.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

Parameter $node has undeclared type \Pug\Nodes\Filter
Open

    public function __invoke(Filter $node, Compiler $compiler)
Severity: Minor
Found in src/Pug/Filter/AbstractFilter.php by phan

Line exceeds 120 characters; contains 127 characters
Open

        throw new \RuntimeException('Pug\Filter\FilterInterface is no longer supported. Now use Pug\FilterInterface instead.');

There are no issues that match your filters.

Category
Status