Completed
Pull Request — master (#11)
by Çağrı
06:55
created
config/settings.dev.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
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;
Please login to merge, or discard this patch.
config/settings.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -2,7 +2,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 
Please login to merge, or discard this patch.