Passed
Pull Request — master (#346)
by Mirko
08:32
created
htdocs/app/AppKernel.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -36,16 +36,16 @@
 block discarded – undo
36 36
 
37 37
     public function getCacheDir()
38 38
     {
39
-        return dirname(__DIR__).'/var/cache/'.$this->getEnvironment();
39
+        return dirname(__DIR__) . '/var/cache/' . $this->getEnvironment();
40 40
     }
41 41
 
42 42
     public function getLogDir()
43 43
     {
44
-        return dirname(__DIR__).'/var/logs';
44
+        return dirname(__DIR__) . '/var/logs';
45 45
     }
46 46
 
47 47
     public function registerContainerConfiguration(LoaderInterface $loader)
48 48
     {
49
-        $loader->load($this->getRootDir().'/config/config_'.$this->getEnvironment().'.yml');
49
+        $loader->load($this->getRootDir() . '/config/config_' . $this->getEnvironment() . '.yml');
50 50
     }
51 51
 }
Please login to merge, or discard this patch.