($value)
| 348 | } |
| 349 | |
| 350 | public function writeI32($value) |
| 351 | { |
| 352 | $thing = $this->toZigZag($value, 32); |
| 353 | |
| 354 | return $this->writeVarint($thing); |
| 355 | } |
| 356 | |
| 357 | public function writeDouble($value) |
| 358 | { |
nothing calls this directly
no test coverage detected