Completed
Push — master ( cda5b1...d40a3f )
by Ross
02:15
created

src/Exception/CanNotInvokeHandlerException.php (1 issue)

Upgrade to new PHP Analysis Engine

These results are based on our legacy PHP analysis, consider migrating to our new PHP analysis engine instead. Learn more

1
<?php
2
3
namespace League\Tactician\Exception;
4
5
/**
6
 * Thrown when a specific handler object can not be used on a command object.
7
 *
8
 * The most common reason is the receiving method is missing or incorrectly
9
 * named.
10
 */
11 View Code Duplication
class CanNotInvokeHandlerException extends \BadMethodCallException implements Exception
0 ignored issues
show
This class seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
12
{
13
    /**
14
     * @var mixed
15
     */
16
    private $command;
17
18
    /**
19
     * @param mixed $command
20
     * @param string $reason
21
     *
22
     * @return static
23
     */
24 12
    public static function forCommand($command, $reason)
25
    {
26 12
        $type =  is_object($command) ? get_class($command) : gettype($command);
27
28 12
        $exception = new static(
29 12
            'Could not invoke handler for command ' . $type .
30 12
            ' for reason: ' . $reason
31 12
        );
32 12
        $exception->command = $command;
33
34 12
        return $exception;
35
    }
36
37
    /**
38
     * Returns the command that could not be invoked
39
     *
40
     * @return mixed
41
     */
42 11
    public function getCommand()
43
    {
44 11
        return $this->command;
45
    }
46
}
47