Use typed properties in block namespace

This commit is contained in:
Dylan K. Taylor
2021-05-22 23:52:31 +01:00
parent 73c229a236
commit f68b9e79e1
68 changed files with 134 additions and 246 deletions

View File

@ -25,8 +25,7 @@ namespace pocketmine\block;
abstract class SimplePressurePlate extends PressurePlate{
/** @var bool */
protected $pressed = false;
protected bool $pressed = false;
protected function writeStateToMeta() : int{
return $this->pressed ? BlockLegacyMetadata::PRESSURE_PLATE_FLAG_POWERED : 0;