We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e41c74d commit 6604508Copy full SHA for 6604508
.travis.yml
@@ -8,6 +8,8 @@ php:
8
- 7.0
9
- 7.1
10
- 7.2
11
+ - 7.3
12
+ - 7.4
13
- nightly # ignore errors, see below
14
- hhvm # ignore errors, see below
15
src/ChunkedStreamDecoder.php
@@ -111,7 +111,7 @@ protected function iterateBuffer()
111
}
112
113
$this->nextChunkIsLength = false;
114
- if (dechex(hexdec($lengthChunk)) !== strtolower($lengthChunk)) {
+ if (dechex(@hexdec($lengthChunk)) !== strtolower($lengthChunk)) {
115
$this->emit('error', array(
116
new Exception('Unable to validate "' . $lengthChunk . '" as chunk length header'),
117
));
0 commit comments