($fieldName, $fieldType, $fieldId)
| 491 | } |
| 492 | |
| 493 | public function writeFieldBegin($fieldName, $fieldType, $fieldId) |
| 494 | { |
| 495 | $this->writeJSONInteger($fieldId); |
| 496 | $this->writeJSONObjectStart(); |
| 497 | $this->writeJSONString($this->getTypeNameForTypeID($fieldType)); |
| 498 | } |
| 499 | |
| 500 | public function writeFieldEnd() |
| 501 | { |
nothing calls this directly
no test coverage detected