($value)
| 363 | } |
| 364 | |
| 365 | public function writeString($value) |
| 366 | { |
| 367 | $len = TStringFuncFactory::create()->strlen($value); |
| 368 | $result = $this->writeVarint($len); |
| 369 | if ($len) { |
| 370 | $this->trans_->write($value, $len); |
| 371 | } |
| 372 | |
| 373 | return $result + $len; |
| 374 | } |
| 375 | |
| 376 | public function writeUuid($uuid) |
| 377 | { |
no test coverage detected