Skip to content

Commit

Permalink
added unpack bytes in checklist
Browse files Browse the repository at this point in the history
  • Loading branch information
anshu-krishna committed Sep 11, 2022
1 parent 5a8b48d commit 8c613d5
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/PackStream/V1/Unpacker.php
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ protected static function checkList(Buffer $buffer, int $tag): iterable {
yield static::unpackString($buffer, $tag, $high);
yield static::unpackList($buffer, $tag, $high);
yield static::unpackMap($buffer, $tag, $high);
yield static::unpackBytes($buffer, $tag, $high);
yield static::unpackStruct($buffer, $tag, $high);
}
public static function unpack(Buffer $buffer) {
Expand Down

0 comments on commit 8c613d5

Please sign in to comment.