Completed
Push — develop ( da0857...da75a0 )
by Neomerx
03:18
created
src/Traits/CommandTrait.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -83,7 +83,7 @@
 block discarded – undo
83 83
      */
84 84
     protected function getAutoloadPath(Composer $composer): string
85 85
     {
86
-        return $composer->getConfig()->get('vendor-dir') . DIRECTORY_SEPARATOR . 'autoload.php';
86
+        return $composer->getConfig()->get('vendor-dir').DIRECTORY_SEPARATOR.'autoload.php';
87 87
     }
88 88
 
89 89
     /**
Please login to merge, or discard this patch.
src/LimoncelloCommand.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -137,7 +137,7 @@  discard block
 block discarded – undo
137 137
         // This method does bootstrap for every command (e.g. configure containers)
138 138
         // and then calls the actual command handler.
139 139
 
140
-        $container =  null;
140
+        $container = null;
141 141
 
142 142
         try {
143 143
             $container = $this->createContainer($this->getComposer());
@@ -185,14 +185,14 @@  discard block
 block discarded – undo
185 185
                 $handler  = $container->get(ThrowableHandlerInterface::class);
186 186
                 $response = $handler->createResponse($exception, $container);
187 187
 
188
-                $output->writeln((string)$response->getBody());
188
+                $output->writeln((string) $response->getBody());
189 189
             } else {
190 190
                 $message = $exception->getMessage();
191 191
                 $file    = $exception->getFile();
192 192
                 $line    = $exception->getLine();
193 193
                 $trace   = $exception->getTraceAsString();
194 194
 
195
-                $output->writeln("$message at $file#$line" . PHP_EOL . $trace);
195
+                $output->writeln("$message at $file#$line".PHP_EOL.$trace);
196 196
             }
197 197
 
198 198
             throw $exception;
@@ -373,7 +373,7 @@  discard block
 block discarded – undo
373 373
         callable $command,
374 374
         PsrContainerInterface $container
375 375
     ): Closure {
376
-        $next = function (IoInterface $inOut) use ($command, $container): void
376
+        $next = function(IoInterface $inOut) use ($command, $container): void
377 377
         {
378 378
             call_user_func($command, $container, $inOut);
379 379
         };
Please login to merge, or discard this patch.