diff options
Diffstat (limited to 'app/AppKernel.php')
-rw-r--r-- | app/AppKernel.php | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/app/AppKernel.php b/app/AppKernel.php index c50783a6..f1140943 100644 --- a/app/AppKernel.php +++ b/app/AppKernel.php | |||
@@ -1,7 +1,7 @@ | |||
1 | <?php | 1 | <?php |
2 | 2 | ||
3 | use Symfony\Component\HttpKernel\Kernel; | ||
4 | use Symfony\Component\Config\Loader\LoaderInterface; | 3 | use Symfony\Component\Config\Loader\LoaderInterface; |
4 | use Symfony\Component\HttpKernel\Kernel; | ||
5 | 5 | ||
6 | class AppKernel extends Kernel | 6 | class AppKernel extends Kernel |
7 | { | 7 | { |
@@ -64,25 +64,25 @@ class AppKernel extends Kernel | |||
64 | 64 | ||
65 | public function getCacheDir() | 65 | public function getCacheDir() |
66 | { | 66 | { |
67 | return dirname(__DIR__).'/var/cache/'.$this->getEnvironment(); | 67 | return dirname(__DIR__) . '/var/cache/' . $this->getEnvironment(); |
68 | } | 68 | } |
69 | 69 | ||
70 | public function getLogDir() | 70 | public function getLogDir() |
71 | { | 71 | { |
72 | return dirname(__DIR__).'/var/logs'; | 72 | return dirname(__DIR__) . '/var/logs'; |
73 | } | 73 | } |
74 | 74 | ||
75 | public function registerContainerConfiguration(LoaderInterface $loader) | 75 | public function registerContainerConfiguration(LoaderInterface $loader) |
76 | { | 76 | { |
77 | $loader->load($this->getRootDir().'/config/config_'.$this->getEnvironment().'.yml'); | 77 | $loader->load($this->getRootDir() . '/config/config_' . $this->getEnvironment() . '.yml'); |
78 | $loader->load(function ($container) { | 78 | $loader->load(function ($container) { |
79 | if ($container->getParameter('use_webpack_dev_server')) { | 79 | if ($container->getParameter('use_webpack_dev_server')) { |
80 | $container->loadFromExtension('framework', [ | 80 | $container->loadFromExtension('framework', [ |
81 | 'assets' => [ | 81 | 'assets' => [ |
82 | 'base_url' => 'http://localhost:8080/', | 82 | 'base_url' => 'http://localhost:8080/', |
83 | ], | 83 | ], |
84 | ]); | 84 | ]); |
85 | } | 85 | } |
86 | }); | 86 | }); |
87 | } | 87 | } |
88 | } | 88 | } |