($value)
| 210 | } |
| 211 | |
| 212 | public function writeString($value) |
| 213 | { |
| 214 | $len = TStringFuncFactory::create()->strlen($value); |
| 215 | $result = $this->writeI32($len); |
| 216 | if ($len) { |
| 217 | $this->trans_->write($value, $len); |
| 218 | } |
| 219 | |
| 220 | return $result + $len; |
| 221 | } |
| 222 | |
| 223 | public function writeUuid($uuid) |
| 224 | { |
no test coverage detected