| Conditions | 2 |
| Paths | 2 |
| Total Lines | 11 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 6 |
| CRAP Score | 2 |
| Changes | 0 | ||
| 1 | <?php |
||
| 27 | 3 | public static function generate(string $id): Country |
|
| 28 | { |
||
| 29 | 3 | static $inst = null; |
|
| 30 | |||
| 31 | 3 | if ($inst === null) { |
|
| 32 | 1 | $inst = new CountryFactory(); |
|
| 33 | 1 | $inst->countryRepository = new CountryRepository(); |
|
| 34 | } |
||
| 35 | |||
| 36 | 3 | return $inst->countryRepository->findCountryByIsoCode($id); |
|
| 37 | } |
||
| 38 | |||
| 47 |