| Total Complexity | 3 |
| Total Lines | 22 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 8 | class Unknown extends Info |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * @param Buffer $buffer |
||
| 12 | */ |
||
| 13 | public function read(Buffer $buffer) |
||
| 14 | { |
||
| 15 | parent::read($buffer); |
||
| 16 | $this->data['raw'] = $buffer->readString($this->dataSize * $this->dataCount); |
||
| 17 | } |
||
| 18 | |||
| 19 | /** |
||
| 20 | * @param Buffer $buffer |
||
| 21 | */ |
||
| 22 | public function write(Buffer $buffer) |
||
| 30 | } |
||
| 31 | } |
||
| 32 |