(&$value)
| 587 | } |
| 588 | |
| 589 | public function readString(&$value) |
| 590 | { |
| 591 | $result = $this->readVarint($len); |
| 592 | if ($len) { |
| 593 | $value = $this->trans_->readAll($len); |
| 594 | } else { |
| 595 | $value = ''; |
| 596 | } |
| 597 | |
| 598 | return $result + $len; |
| 599 | } |
| 600 | |
| 601 | public function readUuid(&$value) |
| 602 | { |
no test coverage detected