Completed
Push — master ( 8bd216...d48c06 )
by Cristian
04:03 queued 02:01
created
src/app/Console/Commands/Install.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -106,7 +106,7 @@
 block discarded – undo
106 106
     /**
107 107
      * Write text to the screen for the user to see.
108 108
      *
109
-     * @param [string] $type    line, info, comment, question, error
109
+     * @param string $type    line, info, comment, question, error
110 110
      * @param [string] $content
111 111
      */
112 112
     public function echo($type, $content)
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -81,7 +81,7 @@
 block discarded – undo
81 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.