| Conditions | 2 |
| Paths | 2 |
| Total Lines | 14 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 31 | public function runCommand($arguments) { |
||
| 32 | if ($arguments[1] === '_completion') { |
||
| 33 | // Don't log autocompletion |
||
| 34 | return; |
||
| 35 | } |
||
| 36 | |||
| 37 | // Remove `./occ` |
||
| 38 | array_shift($arguments); |
||
| 39 | |||
| 40 | $this->log('Console command executed: %s', |
||
| 41 | ['arguments' => implode(' ', $arguments)], |
||
| 42 | ['arguments'] |
||
| 43 | ); |
||
| 44 | } |
||
| 45 | } |
||
| 46 |