fix: missing getTitle method

This commit is contained in:
Michel Roux 2024-01-15 10:13:39 +01:00
parent d6e7c5a460
commit 1b1aac6f3d
1 changed files with 4 additions and 0 deletions

View File

@ -50,6 +50,10 @@ class EpisodeActionExtraData implements \JsonSerializable
return $this->url ?? '/no episodeUrl/';
}
public function getTitle(): string {
return $this->title;
}
public function getUrl(): ?string {
return $this->url;
}