added missing @var property types (reported by phpstan)

This commit is contained in:
Dylan K. Taylor
2020-01-09 14:13:54 +00:00
parent cda3e6f4dc
commit 1eedac87b2
63 changed files with 190 additions and 1 deletions

View File

@ -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){