Conditions | 2 |
Paths | 2 |
Total Lines | 13 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
30 | 1 | public function publish(Command $command): bool |
|
31 | { |
||
32 | 1 | $index = array_search($command, $this->commands); |
|
33 | |||
34 | // remove exists command and publish it again |
||
35 | 1 | if (false !== $index) { |
|
36 | 1 | unset($this->commands[$index]); |
|
37 | } |
||
38 | |||
39 | 1 | $this->commands[] = $command; |
|
40 | |||
41 | 1 | return true; |
|
42 | } |
||
43 | |||
54 |