bourdeau/jdhm-api

View on GitHub
features/bootstrap/ClientContext.php

Summary

Maintainability
A
0 mins
Test Coverage

Missing class import via use statement (line '33', column '23').
Open

            throw new \Exception(sprintf('Page %s returned %s', $arg1, $session->getStatusCode()));
Severity: Minor
Found in features/bootstrap/ClientContext.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 '$arg1'.
Open

    public function youShouldSee($arg1)
Severity: Minor
Found in features/bootstrap/ClientContext.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 local variables such as '$content'.
Open

        $content = $session->getPage()->getContent();
Severity: Minor
Found in features/bootstrap/ClientContext.php by phpmd

UnusedLocalVariable

Since: 0.2

Detects when a local variable is declared and/or assigned, but not used.

Example

class Foo {
    public function doSomething()
    {
        $i = 5; // Unused
    }
}

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

Avoid unused local variables such as '$result'.
Open

        $result = $session->visit($this->locatePath($arg1));
Severity: Minor
Found in features/bootstrap/ClientContext.php by phpmd

UnusedLocalVariable

Since: 0.2

Detects when a local variable is declared and/or assigned, but not used.

Example

class Foo {
    public function doSomething()
    {
        $i = 5; // Unused
    }
}

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

Each class must be in a namespace of at least one level (a top-level vendor name)
Open

class ClientContext extends RawMinkContext

Function closing brace must go on the next line following the body; found 1 blank lines before brace
Open

    }

There are no issues that match your filters.

Category
Status