id; } public function getIsActive(): bool { return $this->isActive; } public function getTitle(): ?array { return $this->title; } public function setIsActive(bool $isActive): self { $this->isActive = $isActive; return $this; } public function setTitle(array $title): self { $this->title = $title; return $this; } }