| Total Complexity | 5 |
| Total Lines | 21 |
| Duplicated Lines | 0 % |
| Coverage | 70% |
| Changes | 3 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 8 | class CountryFactory |
||
| 9 | { |
||
| 10 | private CountryRepository $countryRepository; |
||
| 11 | 1 | private function __construct(){} |
|
| 12 | private function __clone(){} |
||
| 13 | |||
| 14 | 3 | public static function generate(string $id): Country |
|
| 24 | } |
||
| 25 | |||
| 26 | public function setCountryRepository(CountryRepository $countryRepository): void |
||
| 29 | } |
||
| 30 | } |
||
| 31 |