1 | <?php declare(strict_types=1); |
||
8 | final class SetLabel implements Message |
||
9 | { |
||
10 | public const MESSAGE_TYPE_ID = 24; |
||
11 | public const WIRE_SIZE = 32; |
||
12 | |||
13 | private $label; |
||
14 | |||
15 | 3 | public function __construct(Label $label) |
|
19 | |||
20 | 1 | public function getLabel(): Label |
|
24 | |||
25 | 1 | public function getTypeId(): int |
|
29 | |||
30 | 1 | public function getWireSize(): int |
|
34 | } |
||
35 |