jndrm/mqtt-packet

View on GitHub
src/UnsubscribeAck.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Drmer\Mqtt\Packet;

/**
 * The UNSUBACK Packet is sent by the Server to the Client to confirm
 * receipt of an UNSUBSCRIBE Packet.
 */
class UnsubscribeAck extends ControlPacket
{
    public static function getControlPacketType()
    {
        return ControlPacketType::UNSUBACK;
    }
}