Passed
Branch master (b70019)
by Rasul
08:24
created
Category
src/StreamRunner.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -84,14 +84,14 @@
 block discarded – undo
84 84
             echo $contents;
85 85
         }
86 86
 
87
-        if ($remaining > 0 && ! $body->eof()) {
87
+        if ($remaining > 0 && !$body->eof()) {
88 88
             echo $body->read($remaining);
89 89
         }
90 90
     }
91 91
 
92 92
     private function parseContentRange(string $header) : ?array
93 93
     {
94
-        if (! preg_match('/(?P<unit>[\w]+)\s+(?P<first>\d+)-(?P<last>\d+)\/(?P<length>\d+|\*)/', $header, $matches)) {
94
+        if (!preg_match('/(?P<unit>[\w]+)\s+(?P<first>\d+)-(?P<last>\d+)\/(?P<length>\d+|\*)/', $header, $matches)) {
95 95
             return null;
96 96
         }
97 97
 
Please login to merge, or discard this patch.