($keyType, $valType, $size)
| 507 | } |
| 508 | |
| 509 | public function writeMapBegin($keyType, $valType, $size) |
| 510 | { |
| 511 | $this->writeJSONArrayStart(); |
| 512 | $this->writeJSONString($this->getTypeNameForTypeID($keyType)); |
| 513 | $this->writeJSONString($this->getTypeNameForTypeID($valType)); |
| 514 | $this->writeJSONInteger($size); |
| 515 | $this->writeJSONObjectStart(); |
| 516 | } |
| 517 | |
| 518 | public function writeMapEnd() |
| 519 | { |
nothing calls this directly
no test coverage detected