@@ -84,14 +84,14 @@ |
||
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 |