Conditions | 2 |
Paths | 2 |
Total Lines | 18 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 6 |
Changes | 0 |
1 | <?php |
||
50 | private function loadImdbReleaseDatesPageHtml(string $imdbId): string |
||
51 | { |
||
52 | $endpoint = str_replace('{id}', $imdbId, self::IMDB_RELEASE_DATES_URL); |
||
53 | |||
54 | $c = curl_init($endpoint); |
||
55 | curl_setopt($c, CURLOPT_RETURNTRANSFER, true); |
||
56 | |||
57 | $html = curl_exec($c); |
||
58 | |||
59 | if (curl_error($c)) { |
||
60 | //todo write to log |
||
61 | return ''; |
||
62 | } |
||
63 | |||
64 | curl_close($c); |
||
65 | |||
66 | return $html; |
||
67 | } |
||
68 | } |
||
69 |