14 lines
231 B
PHP
Executable File
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;
|
|
}
|