Completed
Pull Request — master (#11)
by
unknown
03:59
created
src/Formatter/CommandNameFormatter.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -66,7 +66,7 @@  discard block
 block discarded – undo
66 66
     {
67 67
         $logger->log(
68 68
             $this->commandReceivedLevel, 
69
-            'Command received: ' . $this->getCommandName($command), 
69
+            'Command received: '.$this->getCommandName($command), 
70 70
             []
71 71
         );
72 72
     }
@@ -78,7 +78,7 @@  discard block
 block discarded – undo
78 78
     {
79 79
         $logger->log(
80 80
             $this->commandSucceededLevel, 
81
-            'Command succeeded: ' . $this->getCommandName($command),
81
+            'Command succeeded: '.$this->getCommandName($command),
82 82
             []
83 83
         );
84 84
     }
@@ -90,7 +90,7 @@  discard block
 block discarded – undo
90 90
     {
91 91
         $logger->log(
92 92
             $this->commandFailedLevel,
93
-            'Command failed: ' . $this->getCommandName($command),
93
+            'Command failed: '.$this->getCommandName($command),
94 94
             ['exception' => $e]
95 95
         );
96 96
     }
Please login to merge, or discard this patch.