We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 8bf11ed + ba4f329 commit cdb1b35Copy full SHA for cdb1b35
1 file changed
src/Type/Int8.php
@@ -23,7 +23,7 @@ class Int8 implements TypeInterface
23
public function read(BinaryReader &$br, $length = null)
24
{
25
if (!$br->canReadBytes(1)) {
26
- throw new \OutOfBoundsException('Cannot read 32-bit int, it exceeds the boundary of the file');
+ throw new \OutOfBoundsException('Cannot read 8-bit int, it exceeds the boundary of the file');
27
}
28
29
$segment = $br->readFromHandle(1);
0 commit comments