@@ -1,4 +1,4 @@ discard block |
||
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 |
||
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; |
@@ -1,4 +1,4 @@ discard block |
||
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 |
||
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 |
||
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 | } |