name; } /******************************************************************************** * * Setters * *********************************************************************************/ /** * Change the name of this element. * * @param string $new_name the new name * @return self */ public function setName(string $new_name): self { $this->name = $new_name; return $this; } /****************************************************************************** * * Helpers * ******************************************************************************/ public function __toString() { return $this->getName(); } }