| 1 | <?php |
||
| 5 | class Poster |
||
| 6 | { |
||
| 7 | const TMDB_BASE_URL = 'https://image.tmdb.org/t/p/original'; |
||
| 8 | const BASE_URL = '/f/movies/{movieId}/poster.jpg'; |
||
| 9 | const BASE_PATH = __DIR__ . '/../../../public/f/movies/{movieId}/poster.jpg'; |
||
| 10 | |||
| 11 | /** |
||
| 12 | * @param int $movieId |
||
| 13 | * @param string $posterUrl |
||
| 14 | * @return null|string |
||
| 15 | */ |
||
| 16 | public static function savePoster(int $movieId, string $posterUrl): ?string |
||
| 50 | |||
| 51 | /** |
||
| 52 | * @param int $movieId |
||
| 53 | * @return string |
||
| 54 | */ |
||
| 55 | public static function getUrl(int $movieId): string |
||
| 59 | } |