oliverlorenz/phpMqttClient

View on GitHub
src/packet/PublishComplete.php

Summary

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

namespace oliverlorenz\reactphpmqtt\packet;

/**
 * The PUBCOMP Packet is the response to a PUBREL Packet.
 * It is the fourth and final packet of the QoS 2 protocol exchange.
 */
class PublishComplete extends ControlPacket {

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