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