@@ -118,7 +118,7 @@ discard block |
||
| 118 | 118 | */ |
| 119 | 119 | public function execute(InputInterface $input, OutputInterface $output) |
| 120 | 120 | { |
| 121 | - $container = null; |
|
| 121 | + $container = null; |
|
| 122 | 122 | |
| 123 | 123 | try { |
| 124 | 124 | $container = $this->createContainer($this->getComposer(), $this->getName()); |
@@ -129,14 +129,14 @@ discard block |
||
| 129 | 129 | $handler = $container->get(ThrowableHandlerInterface::class); |
| 130 | 130 | $response = $handler->createResponse($exception, $container); |
| 131 | 131 | |
| 132 | - $output->writeln((string)$response->getBody()); |
|
| 132 | + $output->writeln((string) $response->getBody()); |
|
| 133 | 133 | } else { |
| 134 | 134 | $message = $exception->getMessage(); |
| 135 | 135 | $file = $exception->getFile(); |
| 136 | 136 | $line = $exception->getLine(); |
| 137 | 137 | $trace = $exception->getTraceAsString(); |
| 138 | 138 | |
| 139 | - $output->writeln("$message at $file#$line" . PHP_EOL . $trace); |
|
| 139 | + $output->writeln("$message at $file#$line".PHP_EOL.$trace); |
|
| 140 | 140 | } |
| 141 | 141 | |
| 142 | 142 | throw $exception; |