Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Tests | 5 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
32 | 1 | public static function fromFile($filename, $returnConfigObject = false, $useIncludePath = false) |
|
33 | { |
||
34 | 1 | $loader = new FileLoader($filename); |
|
35 | 1 | $loader->setUseIncludePath($useIncludePath); |
|
36 | 1 | $loader->setReturnConfigObject($returnConfigObject); |
|
37 | |||
38 | 1 | return $loader->getResult(); |
|
39 | } |
||
40 | } |
||
41 |