Conditions | 2 |
Paths | 2 |
Total Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 6 |
Changes | 0 |
1 | <?php |
||
15 | public function __construct(ImdbCountryRepository $countryRepository) |
||
16 | { |
||
17 | $this->countryRepository = $countryRepository; |
||
18 | |||
19 | $countries = $countryRepository->findAll(); |
||
20 | |||
21 | foreach ($countries as $imdbCountry) { |
||
22 | $this->countryMap[$imdbCountry->getName()] = $imdbCountry->getCountry()->getCode(); |
||
23 | } |
||
24 | } |
||
25 | |||
39 |