Conditions | 3 |
Paths | 2 |
Total Lines | 12 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 12 |
Changes | 0 |
1 | <?php |
||
30 | public function countryToCode(string $country): string |
||
31 | { |
||
32 | if ($this->isMapped === false) { |
||
33 | $this->isMapped = true; |
||
34 | $countries = $this->countryRepository->findAll(); |
||
35 | foreach ($countries as $imdbCountry) { |
||
36 | $this->countryMap[$imdbCountry->getName()] = $imdbCountry->getCountry()->getCode(); |
||
37 | } |
||
38 | } |
||
39 | |||
40 | return $this->countryMap[$country] ?? $country; |
||
41 | } |
||
42 | } |
||
43 |