Passed
Push — master ( f677f6...a93853 )
by Aleksandr
01:37
created
src/Exceptions/CommandException.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -27,9 +27,9 @@
 block discarded – undo
27 27
     public function __construct(string $command, string $output, int $returnCode)
28 28
     {
29 29
         if ($returnCode == 127) {
30
-            $message = 'Command not found: "'.$command.'"';
30
+            $message = 'Command not found: "' . $command . '"';
31 31
         } else {
32
-            $message = 'Command "'.$command.'" exited with code '.$returnCode.': '.$output;
32
+            $message = 'Command "' . $command . '" exited with code ' . $returnCode . ': ' . $output;
33 33
         }
34 34
 
35 35
         parent::__construct($message);
Please login to merge, or discard this patch.