1 | <?php |
||
6 | class Countries |
||
7 | { |
||
8 | /** |
||
9 | * @var string|null |
||
10 | */ |
||
11 | private static $file; |
||
12 | |||
13 | /** |
||
14 | * @var array|null |
||
15 | */ |
||
16 | private static $countries; |
||
17 | |||
18 | /** |
||
19 | * Sets the xml file to use to load countries |
||
20 | * |
||
21 | * @param string|null $file |
||
22 | * |
||
23 | * @throws RuntimeException |
||
24 | */ |
||
25 | 3 | public static function setXML($file = null) |
|
26 | { |
||
27 | 3 | if (is_null($file)) { |
|
28 | 1 | $file = __DIR__ . '/countries.xml'; |
|
29 | } |
||
30 | 3 | if (!is_file($file)) { |
|
31 | 1 | throw new RuntimeException('Country XML file does not exist.'); |
|
32 | } |
||
33 | 2 | self::$file = realpath($file); |
|
34 | 2 | self::$countries = null; |
|
35 | 2 | } |
|
36 | |||
37 | /** |
||
38 | * Loads the countries from the xml file. |
||
39 | */ |
||
40 | 7 | private static function loadCountries() |
|
41 | { |
||
42 | 7 | if (is_null(self::$file)) { |
|
43 | 1 | self::setXML(); |
|
44 | } |
||
45 | // Load xml file |
||
46 | 7 | $xml = simplexml_load_file(self::$file); |
|
47 | 7 | $countries = array(); |
|
48 | // loop through states |
||
49 | 7 | foreach ($xml as $country) { |
|
50 | 7 | $countries[(string) $country->code] = array( |
|
51 | 7 | 'code' => (string) $country->code, |
|
52 | 7 | 'name' => (string) $country->name |
|
53 | ); |
||
54 | } |
||
55 | // Cache states |
||
56 | 7 | self::$countries = $countries; |
|
57 | // Clear xml instance |
||
58 | 7 | unset($xml, $countries, $country); |
|
59 | 7 | } |
|
60 | |||
61 | /** |
||
62 | * Clears the data from the cache. |
||
63 | */ |
||
64 | 8 | public static function clearCache() |
|
68 | |||
69 | /** |
||
70 | * Checks if data has been cached |
||
71 | * |
||
72 | * @return boolean |
||
73 | */ |
||
74 | 1 | public static function isCached() |
|
78 | |||
79 | /** |
||
80 | * Returns array of countries |
||
81 | * |
||
82 | * @return array |
||
83 | */ |
||
84 | 1 | public static function getArray() |
|
92 | |||
93 | /** |
||
94 | * Returns countries as abbreviation=>name pair array |
||
95 | * |
||
96 | * @return array |
||
97 | */ |
||
98 | 3 | public static function getPairs() |
|
110 | |||
111 | /** |
||
112 | * Returns a single country by abbreviation |
||
113 | * |
||
114 | * @param string $country |
||
115 | * @param bool $name_only |
||
116 | * |
||
117 | * @return string|array|null |
||
118 | */ |
||
119 | 3 | public static function getCountry($country, $name_only = true) |
|
131 | } |
||
132 |
There are different options of fixing this problem.
If you want to be on the safe side, you can add an additional type-check:
If you are sure that the expression is traversable, you might want to add a doc comment cast to improve IDE auto-completion and static analysis:
Mark the issue as a false-positive: Just hover the remove button, in the top-right corner of this issue for more options.