23 lines
430 B
PHP
Executable File
23 lines
430 B
PHP
Executable File
<?php
|
|
|
|
namespace BinSoul\Net\Mqtt\Packet;
|
|
|
|
use BinSoul\Net\Mqtt\PacketStream;
|
|
use BinSoul\Net\Mqtt\Packet;
|
|
|
|
/**
|
|
* Represents the PINGREQ packet.
|
|
*/
|
|
class PingRequestPacket extends BasePacket
|
|
{
|
|
protected static $packetType = Packet::TYPE_PINGREQ;
|
|
|
|
public function read(PacketStream $stream)
|
|
{
|
|
parent::read($stream);
|
|
|
|
$this->assertPacketFlags(0);
|
|
$this->assertRemainingPacketLength(0);
|
|
}
|
|
}
|