@@ -1,6 +1,6 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | -$config = require $app->getConfigurationDir().'/services.php'; |
|
3 | +$config = require $app->getConfigurationDir() . '/services.php'; |
|
4 | 4 | |
5 | 5 | $config['twig']['options']['debug'] = true; |
6 | 6 | $config['twig']['options']['auto_reload'] = true; |
@@ -2,7 +2,7 @@ discard block |
||
2 | 2 | |
3 | 3 | return [ |
4 | 4 | |
5 | - 'sentinel' => require $app->getConfigurationDir().'/sentinel.php', |
|
5 | + 'sentinel' => require $app->getConfigurationDir() . '/sentinel.php', |
|
6 | 6 | |
7 | 7 | 'eloquent' => [ |
8 | 8 | 'driver' => $_SERVER['APP_DATABASE_DRIVER'], |
@@ -17,16 +17,16 @@ discard block |
||
17 | 17 | |
18 | 18 | 'twig' => [ |
19 | 19 | 'path' => [ |
20 | - $app->getRootDir().'/templates' |
|
20 | + $app->getRootDir() . '/templates' |
|
21 | 21 | ], |
22 | 22 | 'options' => [ |
23 | - 'cache' => $app->getCacheDir().'/twig', |
|
23 | + 'cache' => $app->getCacheDir() . '/twig', |
|
24 | 24 | ] |
25 | 25 | ], |
26 | 26 | |
27 | 27 | 'monolog' => [ |
28 | 28 | 'name' => 'app', |
29 | - 'path' => $app->getLogDir().'/'.$app->getEnvironment().'.log', |
|
29 | + 'path' => $app->getLogDir() . '/' . $app->getEnvironment() . '.log', |
|
30 | 30 | 'level' => Monolog\Logger::ERROR |
31 | 31 | ] |
32 | 32 |