1
0
Fork 0
forked from deblan/gist
gist/app/bootstrap.php.d/10-config.php

10 lines
217 B
PHP
Raw Normal View History

2015-05-05 20:33:05 +02:00
<?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']);
};