enum($this->color); } public function getColor() : DyeColor{ return $this->color; } /** * @return $this */ public function setColor(DyeColor $color) : self{ $this->color = $color; return $this; } }