| Conditions | 2 |
| Paths | 2 |
| Total Lines | 11 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 1 | Features | 0 |
| 1 | <?php |
||
| 13 | public function __construct(string $country, string $language) |
||
| 14 | { |
||
| 15 | $country = trim($country); |
||
| 16 | |||
| 17 | if (!is_dir(__DIR__ . "/Providers/{$country}")) { |
||
| 18 | throw HolidaysPhpException::unsupportedCountry(); |
||
| 19 | } |
||
| 20 | |||
| 21 | $this->country = $country; |
||
| 22 | |||
| 23 | $this->language = trim($language); |
||
| 24 | } |
||
| 52 |