mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2025-09-06 09:56:06 +00:00
Modernize property type declarations
This commit is contained in:
@ -41,15 +41,9 @@ use function preg_match;
|
||||
use function strlen;
|
||||
|
||||
class ZippedResourcePack implements ResourcePack{
|
||||
|
||||
/** @var string */
|
||||
protected $path;
|
||||
|
||||
/** @var Manifest */
|
||||
protected $manifest;
|
||||
|
||||
/** @var string|null */
|
||||
protected $sha256 = null;
|
||||
protected string $path;
|
||||
protected Manifest $manifest;
|
||||
protected ?string $sha256 = null;
|
||||
|
||||
/** @var resource */
|
||||
protected $fileResource;
|
||||
|
Reference in New Issue
Block a user