(&$elemType, &$size)
| 676 | } |
| 677 | |
| 678 | public function readSetBegin(&$elemType, &$size) |
| 679 | { |
| 680 | $this->readJSONArrayStart(); |
| 681 | $elemType = $this->getTypeIDForTypeName($this->readJSONString(false)); |
| 682 | $size = $this->readJSONInteger(); |
| 683 | |
| 684 | return true; |
| 685 | } |
| 686 | |
| 687 | public function readSetEnd() |
| 688 | { |
nothing calls this directly
no test coverage detected