Conditions | 2 |
Paths | 2 |
Total Lines | 9 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 2.1481 |
Changes | 0 |
1 | <?php declare(strict_types = 1); |
||
42 | 2 | public function addCommand(string $commandClassName) |
|
43 | { |
||
44 | 2 | if (!is_subclass_of($commandClassName, Command::class)) { |
|
45 | 1 | throw new \InvalidArgumentException( |
|
46 | 1 | sprintf('Provided command "%s" doesn\'t extend Venta\Console\Command class.', $commandClassName) |
|
47 | ); |
||
48 | } |
||
49 | 1 | $this->commands[] = $commandClassName; |
|
50 | 1 | } |
|
51 | |||
60 | } |