| 1 | <?php |
||
| 7 | class ActorPhoto |
||
| 8 | { |
||
| 9 | const TMDB_BASE_URL = 'https://image.tmdb.org/t/p/original'; |
||
| 10 | const BASE_URL = '/f/actors/{actorId}/photo.jpg'; |
||
| 11 | const BASE_PATH = __DIR__.'/../../../public' . self::BASE_URL; |
||
| 12 | |||
| 13 | public static function savePhoto(int $actorId, string $photoUrl): ?string |
||
| 48 | |||
| 49 | public static function getUrl(int $actorId): string |
||
| 53 | } |
||
| 54 |