mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2025-09-07 10:22:56 +00:00
added missing @var property types (reported by phpstan)
This commit is contained in:
@ -61,12 +61,18 @@ class AddPlayerPacket extends DataPacket{
|
||||
public $metadata = [];
|
||||
|
||||
//TODO: adventure settings stuff
|
||||
/** @var int */
|
||||
public $uvarint1 = 0;
|
||||
/** @var int */
|
||||
public $uvarint2 = 0;
|
||||
/** @var int */
|
||||
public $uvarint3 = 0;
|
||||
/** @var int */
|
||||
public $uvarint4 = 0;
|
||||
/** @var int */
|
||||
public $uvarint5 = 0;
|
||||
|
||||
/** @var int */
|
||||
public $long1 = 0;
|
||||
|
||||
/** @var EntityLink[] */
|
||||
|
@ -62,6 +62,7 @@ class CraftingDataPacket extends DataPacket{
|
||||
/** @var bool */
|
||||
public $cleanRecipes = false;
|
||||
|
||||
/** @var mixed[][] */
|
||||
public $decodedEntries = [];
|
||||
|
||||
public function clean(){
|
||||
|
Reference in New Issue
Block a user