Conditions | 3 |
Paths | 4 |
Total Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 3 |
Changes | 0 |
1 | <?php |
||
34 | 12 | protected function prep($locale) |
|
35 | { |
||
36 | 12 | $locale = $locale ?: 'en'; |
|
37 | 12 | $localeFile = realpath(__DIR__."/../data/$locale.php"); |
|
38 | |||
39 | 12 | if (!file_exists($localeFile)) { |
|
40 | 1 | throw new Exception("Locale: <$locale> not recognised."); |
|
41 | } |
||
42 | |||
43 | 11 | $this->countries = collect(require $localeFile); |
|
44 | 11 | } |
|
45 | } |
||
46 |