(&$value)
| 448 | } |
| 449 | |
| 450 | public function readString(&$value) |
| 451 | { |
| 452 | $result = $this->readI32($len); |
| 453 | if ($len) { |
| 454 | $value = $this->trans_->readAll($len); |
| 455 | } else { |
| 456 | $value = ''; |
| 457 | } |
| 458 | |
| 459 | return $result + $len; |
| 460 | } |
| 461 | |
| 462 | public function readUuid(&$value) |
| 463 | { |
no test coverage detected