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