Conditions | 3 |
Paths | 4 |
Total Lines | 14 |
Lines | 0 |
Ratio | 0 % |
Tests | 5 |
CRAP Score | 3.4746 |
Changes | 0 |
1 | <?php |
||
19 | 1 | public function parse() |
|
20 | { |
||
21 | 1 | if (defined('INI_SCANNER_TYPED')) { |
|
22 | 1 | $data = parse_ini_file($this->getPath(), true, INI_SCANNER_TYPED); |
|
23 | } else { |
||
24 | $data = parse_ini_file($this->getPath(), true); |
||
25 | } |
||
26 | 1 | if ($data === false) { |
|
27 | $error = error_get_last(); |
||
28 | throw new ParseException($error); |
||
29 | } |
||
30 | |||
31 | 1 | return $data; |
|
32 | } |
||
33 | |||
42 |