(&$keyType, &$valType, &$size)
| 647 | } |
| 648 | |
| 649 | public function readMapBegin(&$keyType, &$valType, &$size) |
| 650 | { |
| 651 | $this->readJSONArrayStart(); |
| 652 | $keyType = $this->getTypeIDForTypeName($this->readJSONString(false)); |
| 653 | $valType = $this->getTypeIDForTypeName($this->readJSONString(false)); |
| 654 | $size = $this->readJSONInteger(); |
| 655 | $this->readJSONObjectStart(); |
| 656 | } |
| 657 | |
| 658 | public function readMapEnd() |
| 659 | { |
nothing calls this directly
no test coverage detected