($name, $type, $seqid)
| 46 | } |
| 47 | |
| 48 | public function writeMessageBegin($name, $type, $seqid) |
| 49 | { |
| 50 | if ($this->strictWrite_) { |
| 51 | $version = self::VERSION_1 | $type; |
| 52 | |
| 53 | return |
| 54 | $this->writeI32($version) + |
| 55 | $this->writeString($name) + |
| 56 | $this->writeI32($seqid); |
| 57 | } else { |
| 58 | return |
| 59 | $this->writeString($name) + |
| 60 | $this->writeByte($type) + |
| 61 | $this->writeI32($seqid); |
| 62 | } |
| 63 | } |
| 64 | |
| 65 | public function writeMessageEnd() |
| 66 | { |
nothing calls this directly
no test coverage detected