Conditions | 4 |
Paths | 4 |
Total Lines | 10 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
31 | public static function load(string $file_name) : bool { |
||
32 | |||
33 | if (!is_array($phrases = Explorer::include($file_name))) return false; |
||
34 | |||
35 | foreach ($phrases as $name => $value) if (is_scalar($value)) self::addPhrase($name, $value); |
||
36 | |||
37 | # ------------------------ |
||
38 | |||
39 | return true; |
||
40 | } |
||
41 | |||
63 |