| 1 | <?php |
||
| 10 | class ImdbReleaseDateParserService |
||
| 11 | { |
||
| 12 | private const IMDB_RELEASE_DATES_URL = 'https://imdb.com/title/{id}/releaseinfo?ref_=tt_dt_dt'; |
||
| 13 | |||
| 14 | private $imdbMapper; |
||
| 15 | |||
| 16 | public function __construct(ImdbDataMapper $mapper) |
||
| 20 | |||
| 21 | public function getReleaseDates(Movie $movie): array |
||
| 49 | |||
| 50 | private function loadImdbReleaseDatesPageHtml(string $imdbId): string |
||
| 68 | } |
||
| 69 |