Passed
Pull Request — master (#347)
by Mirko
07:53
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.
htdocs/src/AppBundle/Entity/Geocache.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -301,7 +301,7 @@
 block discarded – undo
301 301
     /**
302 302
      * Get node
303 303
      *
304
-     * @return bool
304
+     * @return integer
305 305
      */
306 306
     public function getNode()
307 307
     {
Please login to merge, or discard this patch.
htdocs/src/AppBundle/Entity/User.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -371,7 +371,7 @@
 block discarded – undo
371 371
     /**
372 372
      * Get node
373 373
      *
374
-     * @return bool
374
+     * @return integer
375 375
      */
376 376
     public function getNode()
377 377
     {
Please login to merge, or discard this patch.