url = $data['url']; return $this; } public function toArray(): array { return [ 'url' => $this->url ]; } public function getUrl(): string { return $this->url; } public function getCaption(): ?string { return $this->caption; } public function setCaption(?string $caption): void { $this->caption = $caption; } }