@@ -26,21 +26,21 @@ |
||
26 | 26 | |
27 | 27 | |
28 | 28 | class Console extends Action { |
29 | - /** |
|
30 | - * @param $arguments |
|
31 | - */ |
|
32 | - public function runCommand(array $arguments) { |
|
33 | - if (!isset($arguments[1]) || $arguments[1] === '_completion') { |
|
34 | - // Don't log autocompletion |
|
35 | - return; |
|
36 | - } |
|
29 | + /** |
|
30 | + * @param $arguments |
|
31 | + */ |
|
32 | + public function runCommand(array $arguments) { |
|
33 | + if (!isset($arguments[1]) || $arguments[1] === '_completion') { |
|
34 | + // Don't log autocompletion |
|
35 | + return; |
|
36 | + } |
|
37 | 37 | |
38 | - // Remove `./occ` |
|
39 | - array_shift($arguments); |
|
38 | + // Remove `./occ` |
|
39 | + array_shift($arguments); |
|
40 | 40 | |
41 | - $this->log('Console command executed: %s', |
|
42 | - ['arguments' => implode(' ', $arguments)], |
|
43 | - ['arguments'] |
|
44 | - ); |
|
45 | - } |
|
41 | + $this->log('Console command executed: %s', |
|
42 | + ['arguments' => implode(' ', $arguments)], |
|
43 | + ['arguments'] |
|
44 | + ); |
|
45 | + } |
|
46 | 46 | } |