Completed
Pull Request — master (#80)
by Aydin
01:51
created
src/Terminal/UnixTerminal.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -107,7 +107,7 @@  discard block
 block discarded – undo
107 107
             exec('stty -icanon');
108 108
             $this->isCanonical = true;
109 109
         } else {
110
-            exec('stty ' . $this->getOriginalConfiguration());
110
+            exec('stty '.$this->getOriginalConfiguration());
111 111
             $this->isCanonical = false;
112 112
         }
113 113
     }
@@ -160,7 +160,7 @@  discard block
 block discarded – undo
160 160
         ];
161 161
 
162 162
         $input = '';
163
-        $this->input->read(4, function ($buffer) use (&$input) {
163
+        $this->input->read(4, function($buffer) use (&$input) {
164 164
             $input .= $buffer;
165 165
         });
166 166
 
Please login to merge, or discard this patch.