getName(); } /******************************************************************************** * * Getters * *********************************************************************************/ /** * Get the name of this element. * * @return string the name of this element */ public function getName(): string { return $this->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; } }