Completed
Push — master ( 4586d8...9f2196 )
by Neomerx
02:14
created
src/LimoncelloCommand.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -118,7 +118,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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;
Please login to merge, or discard this patch.