bool($this->wet); } public function isWet() : bool{ return $this->wet; } /** @return $this */ public function setWet(bool $wet) : self{ $this->wet = $wet; return $this; } }