linux-questionnaire/app/bootstrap.php.d/10-config.php
2015-03-02 20:07:17 +01:00

10 lines
230 B
PHP

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