Total Complexity | 4 |
Total Lines | 38 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
17 | final class UnSubAck extends ProtocolBase implements ReadableContentInterface |
||
18 | { |
||
19 | use ReadableContent; |
||
20 | |||
21 | const CONTROL_PACKET_VALUE = 11; |
||
22 | |||
23 | /** |
||
24 | * @var int |
||
25 | */ |
||
26 | private $packetIdentifier = 0; |
||
27 | |||
28 | public function fillObject(string $rawMQTTHeaders, ClientInterface $client): ReadableContentInterface |
||
37 | } |
||
38 | |||
39 | /** |
||
40 | * @inheritdoc |
||
41 | * @throws \LogicException |
||
42 | */ |
||
43 | public function performSpecialActions(ClientInterface $client, WritableContentInterface $originalRequest): bool |
||
57 |