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

@ -39,9 +39,13 @@ use function str_repeat;
class FloatingTextParticle extends Particle{
//TODO: HACK!
/** @var string */
protected $text;
/** @var string */
protected $title;
protected $entityId;
/** @var int|null */
protected $entityId = null;
/** @var bool */
protected $invisible = false;
/**