jndrm/mqtt-packet

View on GitHub
src/SubscribeAck.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Drmer\Mqtt\Packet;

/**
 * A SUBACK Packet is sent by the Server to the Client to confirm receipt
 * and processing of a SUBSCRIBE Packet.
 */
class SubscribeAck extends ControlPacket
{
    public static function getControlPacketType()
    {
        return ControlPacketType::SUBACK;
    }
}