subMenuItems[] = $subMenuItems; return $this; } /** * @return NavbarSubmenuItem[] */ public function getSubMenuItems(): array { return $this->subMenuItems; } public function getTitle(): ?string { return $this->title ?? $this->parent->getLabel(); } public function setTitle(?string $title): self { $this->title = $title; return $this; } }