| Total Complexity | 5 |
| Total Lines | 43 |
| Duplicated Lines | 0 % |
| Coverage | 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 |
||
| 52 | } |
||
| 53 | |||
| 54 | /** |
||
| 55 | * @inheritdoc |
||
| 56 | */ |
||
| 57 | public function getOriginControlPacket(): int |
||
| 62 |