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