Completed
Push — master ( 9d1723...8bd216 )
by Cristian
02:08
created
src/app/Console/Commands/Install.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -78,10 +78,10 @@
 block discarded – undo
78 78
      */
79 79
     public function executeProcess($command, $beforeNotice = false, $afterNotice = false)
80 80
     {
81
-        $this->echo('info', $beforeNotice?' '.$beforeNotice:$command);
81
+        $this->echo('info', $beforeNotice ? ' '.$beforeNotice : $command);
82 82
 
83 83
         $process = new Process($command, null, null, null, $this->option('timeout'), null);
84
-        $process->run(function ($type, $buffer) {
84
+        $process->run(function($type, $buffer) {
85 85
             if (Process::ERR === $type) {
86 86
                 $this->echo('comment', $buffer);
87 87
             } else {
Please login to merge, or discard this patch.