| Conditions | 4 |
| Paths | 4 |
| Total Lines | 13 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 20 |
| Changes | 0 | ||
| 1 | <?php |
||
| 9 | public function __construct($options = []) |
||
| 10 | { |
||
| 11 | $dir = __DIR__ . '/../../../../../../'; |
||
| 12 | |||
| 13 | if (! empty($options) && isset($options['paths']['root'])) { |
||
| 14 | $dir = rtrim($options['paths']['root'], "/") . '/'; |
||
| 15 | } |
||
| 16 | |||
| 17 | foreach (glob($dir . 'config/*.php') as $file) { |
||
| 18 | $index = pathinfo($file)['filename']; |
||
| 19 | $this->config[$index] = require_once $file; |
||
| 20 | } |
||
| 21 | } |
||
| 22 | |||
| 44 |