NeroReflex/Gishiki

View on GitHub
src/Core/Environment.php

Summary

Maintainability
A
0 mins
Test Coverage

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

            throw new \InvalidArgumentException("The given environment key must be a non-empty valid string");
Severity: Minor
Found in src/Core/Environment.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 '74', column '23').
Open

            throw new \InvalidArgumentException("The given environment key must be a non-empty valid string");
Severity: Minor
Found in src/Core/Environment.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 '56', column '23').
Open

            throw new \InvalidArgumentException("The given environment key must be a non-empty valid string");
Severity: Minor
Found in src/Core/Environment.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 '38', column '23').
Open

            throw new \InvalidArgumentException("The given environment key must be a non-empty valid string");
Severity: Minor
Found in src/Core/Environment.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 local variables such as '$value'.
Open

        return (($value = getenv($key)) !== false);
Severity: Minor
Found in src/Core/Environment.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

There are no issues that match your filters.

Category
Status