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