bool($this->powered); } public function getLightLevel() : int{ return $this->powered ? 15 : 0; } public function isLit() : bool{ return $this->powered; } /** @return $this */ public function setLit(bool $lit = true) : self{ $this->powered = $lit; return $this; } }