Added class method DataPacket->canBeBatched()

This commit is contained in:
Dylan K. Taylor
2017-02-27 11:09:49 +00:00
parent 56990eb28b
commit ea0f291cb5
4 changed files with 13 additions and 1 deletions

View File

@ -31,6 +31,10 @@ class BatchPacket extends DataPacket{
public $payload;
public function canBeBatched() : bool{
return false;
}
public function decode(){
$this->payload = $this->getString();
}