fix: missing getTitle method
All checks were successful
repod / xml (push) Successful in 40s
repod / php (push) Successful in 56s
repod / nodejs (push) Successful in 2m11s
repod / release (push) Has been skipped

This commit is contained in:
Michel Roux 2024-01-15 10:13:39 +01:00
parent d6e7c5a460
commit 1b1aac6f3d

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;
}