Completed
Push — master ( 6e9b12...b51802 )
by John
02:03
created
tests/functional/_app/src/PetStoreBundle.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1
-<?php declare(strict_types=1);
1
+<?php declare(strict_types = 1);
2 2
 /*
3 3
  * This file is part of the KleijnWeb\SwaggerBundle package.
4 4
  *
Please login to merge, or discard this patch.
tests/functional/_app/TestKernel.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@  discard block
 block discarded – undo
1
-<?php declare(strict_types=1);
1
+<?php declare(strict_types = 1);
2 2
 
3 3
 use Symfony\Component\Config\Loader\LoaderInterface;
4 4
 use Symfony\Component\HttpKernel\Kernel;
@@ -29,12 +29,12 @@  discard block
 block discarded – undo
29 29
 
30 30
     public function getCacheDir()
31 31
     {
32
-        return __DIR__ . '/var/cache/' . $this->environment;
32
+        return __DIR__.'/var/cache/'.$this->environment;
33 33
     }
34 34
 
35 35
     public function getLogDir()
36 36
     {
37
-        return __DIR__ . '/var/logs/' . $this->environment;
37
+        return __DIR__.'/var/logs/'.$this->environment;
38 38
     }
39 39
 
40 40
     /**
@@ -42,6 +42,6 @@  discard block
 block discarded – undo
42 42
      */
43 43
     public function registerContainerConfiguration(LoaderInterface $loader)
44 44
     {
45
-        $loader->load(__DIR__ . '/config/config_' . $this->getEnvironment() . '.yml');
45
+        $loader->load(__DIR__.'/config/config_'.$this->getEnvironment().'.yml');
46 46
     }
47 47
 }
Please login to merge, or discard this patch.