(&$name, &$fieldType, &$fieldId)
| 628 | } |
| 629 | |
| 630 | public function readFieldBegin(&$name, &$fieldType, &$fieldId) |
| 631 | { |
| 632 | $ch = $this->reader_->peek(); |
| 633 | $name = ""; |
| 634 | |
| 635 | if (substr($ch, 0, 1) == self::RBRACE) { |
| 636 | $fieldType = TType::STOP; |
| 637 | } else { |
| 638 | $fieldId = $this->readJSONInteger(); |
| 639 | $this->readJSONObjectStart(); |
| 640 | $fieldType = $this->getTypeIDForTypeName($this->readJSONString(false)); |
| 641 | } |
| 642 | } |
| 643 | |
| 644 | public function readFieldEnd() |
| 645 | { |
nothing calls this directly
no test coverage detected