1 | <?php |
||
7 | class MovieTranslationDTO |
||
8 | { |
||
9 | private $locale; |
||
10 | private $title; |
||
11 | private $overview; |
||
12 | private $posterUrl; |
||
13 | |||
14 | 5 | public function __construct(string $locale, string $title, ?string $overview, ?string $posterUrl) |
|
25 | |||
26 | /** |
||
27 | * @return string |
||
28 | */ |
||
29 | 5 | public function getLocale(): string |
|
33 | |||
34 | /** |
||
35 | * @return string |
||
36 | */ |
||
37 | 5 | public function getTitle(): string |
|
41 | |||
42 | /** |
||
43 | * @return string|null |
||
44 | */ |
||
45 | 5 | public function getOverview(): ?string |
|
49 | |||
50 | /** |
||
51 | * @return string|null |
||
52 | */ |
||
53 | 5 | public function getPosterUrl(): ?string |
|
57 | } |
||
58 |