1
0
Fork 0
forked from deblan/gist
gist/app/bootstrap.php.d/10-config.php
2015-11-10 21:49:42 +01:00

10 lines
218 B
PHP

<?php
use Symfony\Component\Config\FileLocator;
$app['config.locator.path'] = $app['root_path'].'/app/config/';
$app['config.locator'] = function ($app) {
return new FileLocator($app['config.locator.path']);
};