1 | <?php |
||
9 | class SearchService |
||
10 | { |
||
11 | private $repository; |
||
12 | private $tmdb; |
||
13 | private $sync; |
||
14 | private $normalizer; |
||
15 | |||
16 | 2 | public function __construct(MovieRepository $repository, TmdbSearchService $tmdb, TmdbSyncService $sync, TmdbNormalizerService $normalizer) |
|
23 | |||
24 | /** |
||
25 | * @param string $query |
||
26 | * @param string $locale |
||
27 | * @return Movie[] |
||
28 | * @throws \Exception |
||
29 | */ |
||
30 | 2 | public function findByQuery(string $query, string $locale): array |
|
43 | } |