| 1 | <?php declare(strict_types=1); |
||
| 8 | final class SetPower implements Message |
||
| 9 | { |
||
| 10 | public const MESSAGE_TYPE_ID = 117; |
||
| 11 | public const WIRE_SIZE = 6; |
||
| 12 | |||
| 13 | private $powerTransition; |
||
| 14 | |||
| 15 | public function __construct(PowerTransition $powerTransition) |
||
| 19 | |||
| 20 | public function getPowerTransition(): PowerTransition |
||
| 24 | |||
| 25 | public function getTypeId(): int |
||
| 29 | |||
| 30 | public function getWireSize(): int |
||
| 34 | } |
||
| 35 |