Completed
Push — master ( fb244a...6e9b12 )
by John
05:17
created
tests/functional/TestCacheSmashingPHPUnitListener.php 1 patch
Spacing   +2 added lines, -2 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
  * This file is part of the KleijnWeb\SwaggerBundle package.
4 4
  *
@@ -75,7 +75,7 @@  discard block
 block discarded – undo
75 75
             return;
76 76
         }
77 77
 
78
-        $dir = __DIR__ . '/var';
78
+        $dir = __DIR__.'/var';
79 79
 
80 80
         if (!is_dir($dir)) {
81 81
             return;
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.