oliverlorenz/phpMqttClient

View on GitHub
src/packet/PingResponse.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php
/**
 * @author Oliver Lorenz
 * @since 2015-05-05
 * Time: 19:12
 */

namespace oliverlorenz\reactphpmqtt\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
{
    const EVENT = 'PING_RESPONSE';

    public static function getControlPacketType()
    {
        return ControlPacketType::PINGRESP;
    }
}