@@ -63,7 +63,7 @@ |
||
63 | 63 | if ($this->logger && count($replaceCommandHooks) > 1) { |
64 | 64 | $command_name = $commandData->annotationData()->get('command', 'unknown'); |
65 | 65 | $message = "Multiple implementations of the \"replace - command\" hook exist for the \"$command_name\" command.\n"; |
66 | - foreach($replaceCommandHooks as $replaceCommandHook) { |
|
66 | + foreach ($replaceCommandHooks as $replaceCommandHook) { |
|
67 | 67 | $class = get_class($replaceCommandHook[0]); |
68 | 68 | $method = $replaceCommandHook[1]; |
69 | 69 | $hook_name = "$class->$method"; |
@@ -148,7 +148,7 @@ |
||
148 | 148 | if ($replaceDispatcher->hasReplaceCommandHook()) { |
149 | 149 | $commandCallback = $replaceDispatcher->getReplacementCommand($commandData); |
150 | 150 | $args_and_options = $commandData->getArgsAndOptions(); |
151 | - $args = [ $args_and_options ]; |
|
151 | + $args = [$args_and_options]; |
|
152 | 152 | $result = $this->runCommandCallback($commandCallback, $commandData, $args); |
153 | 153 | } |
154 | 154 | else { |