@@ -107,7 +107,7 @@ discard block |
||
| 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 |
||
| 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 | |