| 1 | <?php declare(strict_types=1); |
||
| 5 | final class UnknownMessage implements Message |
||
| 6 | { |
||
| 7 | private $typeId; |
||
| 8 | private $data; |
||
| 9 | |||
| 10 | public function __construct(int $typeId, string $data) |
||
| 15 | |||
| 16 | public function getData(): string |
||
| 20 | |||
| 21 | public function getTypeId(): int |
||
| 25 | |||
| 26 | public function getWireSize(): int |
||
| 30 | } |
||
| 31 |