jndrm/mqtt-packet

View on GitHub
src/PingResponse.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Drmer\Mqtt\Packet;

/**
 * A PINGRESP Packet is sent by the Server to the Client in response
 * to a PINGREQ Packet. It indicates that the Server is alive.
 */
class PingResponse extends ControlPacket
{
    public static function getControlPacketType()
    {
        return ControlPacketType::PINGRESP;
    }
}