Completed
Push — master ( dd1955...c3a87b )
by Michael
10s
created
src/UnixTerminal.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -233,7 +233,7 @@
 block discarded – undo
233 233
     public function read(int $bytes): string
234 234
     {
235 235
         $buffer = '';
236
-        $this->input->read($bytes, function ($data) use (&$buffer) {
236
+        $this->input->read($bytes, function($data) use (&$buffer) {
237 237
             $buffer .= $data;
238 238
         });
239 239
         return $buffer;
Please login to merge, or discard this patch.
src/InputCharacter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -61,7 +61,7 @@
 block discarded – undo
61 61
      */
62 62
     public function isNotControl() : bool
63 63
     {
64
-        return ! $this->isControl();
64
+        return !$this->isControl();
65 65
     }
66 66
 
67 67
     /**
Please login to merge, or discard this patch.
test/IO/ResourceInputStreamTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@
 block discarded – undo
33 33
         $inputStream = new ResourceInputStream($stream);
34 34
 
35 35
         $input = '';
36
-        $inputStream->read(4, function ($buffer) use (&$input) {
36
+        $inputStream->read(4, function($buffer) use (&$input) {
37 37
             $input .= $buffer;
38 38
         });
39 39
 
Please login to merge, or discard this patch.