| 1 | <?php |
||
| 11 | class Factory |
||
| 12 | { |
||
| 13 | /** |
||
| 14 | * @param Config $repository |
||
| 15 | * @param $files |
||
| 16 | */ |
||
| 17 | public static function fromFiles(Config $repository, $files) |
||
| 24 | |||
| 25 | /** |
||
| 26 | * @param $filename |
||
| 27 | * @param bool $returnConfigObject |
||
| 28 | * @param bool $useIncludePath |
||
| 29 | * @return mixed|Config |
||
| 30 | * @throws Exception\RuntimeException |
||
| 31 | */ |
||
| 32 | 1 | public static function fromFile($filename, $returnConfigObject = false, $useIncludePath = false) |
|
| 40 | } |
||
| 41 |