Formula9/Framework

View on GitHub
F9/Container/Potion.php

Summary

Maintainability
A
0 mins
Test Coverage

The class Potion has 12 public methods. Consider refactoring Potion to keep number of public methods under 10.
Open

class Potion implements ContainerContract, \ArrayAccess
{
    use WithInjectorArrayAccess, WithConfigurableInjector;

    /**
Severity: Minor
Found in F9/Container/Potion.php by phpmd

TooManyPublicMethods

Since: 0.1

A class with too many public methods is probably a good suspect for refactoring, in order to reduce its complexity and find a way to have more fine grained objects.

By default it ignores methods starting with 'get' or 'set'.

Example

Source https://phpmd.org/rules/codesize.html#toomanypublicmethods

Avoid unused parameters such as '$defaultMethod'.
Open

    public function call($callback, array $parameters = [], $defaultMethod = NULL)
Severity: Minor
Found in F9/Container/Potion.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 '$abstract'.
Open

    public function add($abstract, $concrete = NULL)
Severity: Minor
Found in F9/Container/Potion.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 '$concrete'.
Open

    public function add($abstract, $concrete = NULL)
Severity: Minor
Found in F9/Container/Potion.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

TODO found
Open

        // TODO: Implement add() method.
Severity: Minor
Found in F9/Container/Potion.php by fixme

There are no issues that match your filters.

Category
Status