mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2025-09-08 10:53:05 +00:00
added missing @var property types (reported by phpstan)
This commit is contained in:
@ -24,8 +24,11 @@ declare(strict_types=1);
|
||||
namespace pocketmine\resourcepacks;
|
||||
|
||||
class ResourcePackInfoEntry{
|
||||
/** @var string */
|
||||
protected $packId; //UUID
|
||||
/** @var string */
|
||||
protected $version;
|
||||
/** @var int */
|
||||
protected $packSize;
|
||||
|
||||
public function __construct(string $packId, string $version, int $packSize = 0){
|
||||
|
Reference in New Issue
Block a user