Completed
Push — dev ( 87a06e...746aba )
by Zach
02:16
created

FactoryNotFound::factoryDefinitionNotFound()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
eloc 2
nc 1
nop 1
dl 0
loc 4
rs 10
c 1
b 0
f 0
1
<?php
2
3
namespace Yarak\Exceptions;
4
5
use Exception;
6
7
class FactoryNotFound extends Exception
8
{
9
    /**
10
     * Factory definition can not be found.
11
     *
12
     * @param string $command
0 ignored issues
show
Bug introduced by
There is no parameter named $command. Was it maybe removed?

This check looks for PHPDoc comments describing methods or function parameters that do not exist on the corresponding method or function.

Consider the following example. The parameter $italy is not defined by the method finale(...).

/**
 * @param array $germany
 * @param array $island
 * @param array $italy
 */
function finale($germany, $island) {
    return "2:1";
}

The most likely cause is that the parameter was removed, but the annotation was not.

Loading history...
13
     *
14
     * @return static
15
     */
16
    public static function factoryDefinitionNotFound($message)
17
    {
18
        return new static($message);
19
    }
20
}
21