. */ namespace App\Entity\Contracts; interface NamedElementInterface { /** * Get the name of this element. * * @return string the name of this element */ public function getName(): string; }