Formula9/Framework

View on GitHub
F9/Console/Console.php

Summary

Maintainability
A
0 mins
Test Coverage

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

        $app = $this;
Severity: Minor
Found in F9/Console/Console.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 private methods such as 'bootSettings'.
Open

    private function bootSettings()
    {
        // contextual use for routes and di
        $app = $this;

Severity: Minor
Found in F9/Console/Console.php by phpmd

UnusedPrivateMethod

Since: 0.2

Unused Private Method detects when a private method is declared but is unused.

Example

class Something
{
    private function foo() {} // unused
}

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

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

        $app = Forge::find('app');
Severity: Minor
Found in F9/Console/Console.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