Completed
Push — master ( 5735e1...ecb9c5 )
by Sebastian
02:27
created
src/Command/Executable.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -64,9 +64,9 @@
 block discarded – undo
64 64
     public function getCommand() : string
65 65
     {
66 66
         return $this->cmd
67
-        . (count($this->options)   ? ' ' . implode(' ', $this->options)   : '')
67
+        . (count($this->options) ? ' ' . implode(' ', $this->options) : '')
68 68
         . (count($this->arguments) ? ' ' . implode(' ', $this->arguments) : '')
69
-        . ($this->isSilent         ? ' 2> /dev/null'                      : '');
69
+        . ($this->isSilent ? ' 2> /dev/null' : '');
70 70
     }
71 71
 
72 72
     /**
Please login to merge, or discard this patch.