1 | <?php |
||
9 | class ImdbDataMapper |
||
10 | { |
||
11 | private $countryMap = []; |
||
12 | |||
13 | private $countryRepository; |
||
14 | |||
15 | private $isMapped = false; |
||
16 | |||
17 | public function __construct(ImdbCountryRepository $countryRepository) |
||
21 | |||
22 | /*** |
||
23 | * @throws |
||
24 | */ |
||
25 | public function dateToObject(string $date): \DateTimeInterface |
||
29 | |||
30 | public function countryToCode(string $country): string |
||
42 | } |
||
43 |