* Writes a struct header. * * @param string $name Struct name * @throws TException on write error * @return int How many bytes written */
($name)
| 475 | * @return int How many bytes written |
| 476 | */ |
| 477 | public function writeStructBegin($name) |
| 478 | { |
| 479 | $this->writeJSONObjectStart(); |
| 480 | } |
| 481 | |
| 482 | /** |
| 483 | * Close a struct. |
nothing calls this directly
no test coverage detected