| 1 | <?php |
||
| 10 | class TmdbSearchService |
||
| 11 | { |
||
| 12 | private $apiKey; |
||
| 13 | private $client; |
||
| 14 | private $logger; |
||
| 15 | private const ApiUrl = 'https://api.themoviedb.org/3'; |
||
| 16 | |||
| 17 | 2 | public function __construct(LoggerInterface $logger) |
|
| 23 | |||
| 24 | 1 | public function findMoviesByQuery(string $query, string $locale = 'en'): array |
|
| 36 | |||
| 37 | 1 | private function request(string $url, string $method = 'GET', array $params = []): array |
|
| 63 | } |