getBlock()); $this->fuel = $fuel; $this->burnTime = $burnTime; $this->furnace = $furnace; } /** * @return Furnace */ public function getFurnace() : Furnace{ return $this->furnace; } /** * @return Item */ public function getFuel() : Item{ return $this->fuel; } /** * @return int */ public function getBurnTime() : int{ return $this->burnTime; } /** * @param int $burnTime */ public function setBurnTime(int $burnTime) : void{ $this->burnTime = $burnTime; } /** * @return bool */ public function isBurning() : bool{ return $this->burning; } /** * @param bool $burning */ public function setBurning(bool $burning) : void{ $this->burning = $burning; } }