1 | <?php |
||
17 | class Integer8Reader extends AbstractIntegerReader |
||
18 | { |
||
19 | /** |
||
20 | * Read unsigned 8-bit integer (char) data from the stream |
||
21 | * |
||
22 | * @return int |
||
23 | */ |
||
24 | protected function readUnsigned() |
||
28 | |||
29 | /** |
||
30 | * Read signed 8-bit integer (char) data from the stream |
||
31 | * |
||
32 | * @return int |
||
33 | */ |
||
34 | protected function readSigned() |
||
43 | } |
||
44 |