Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
50 | private static function createConfig() : \Aimeos\Base\Config\Iface |
||
51 | { |
||
52 | $path = dirname( __DIR__ ) . DIRECTORY_SEPARATOR . 'config'; |
||
53 | $file = __DIR__ . DIRECTORY_SEPARATOR . 'confdoc.ser'; |
||
54 | |||
55 | $object = new \Aimeos\Base\Config\PHPArray( [], $path ); |
||
56 | $object = new \Aimeos\Base\Config\Decorator\Documentor( $object, $file ); |
||
57 | |||
58 | return $object; |
||
59 | } |
||
61 |