Files
instafeed/vendor/binsoul/net-mqtt/src/Packet/PublishReceivedPacket.php
2022-10-23 01:39:27 +02:00

14 lines
231 B
PHP
Executable File

<?php
namespace BinSoul\Net\Mqtt\Packet;
use BinSoul\Net\Mqtt\Packet;
/**
* Represents the PUBREC packet.
*/
class PublishReceivedPacket extends IdentifierOnlyPacket
{
protected static $packetType = Packet::TYPE_PUBREC;
}