@@ -82,7 +82,7 @@ |
||
82 | 82 | |
83 | 83 | public function registerContainerConfiguration(LoaderInterface $loader) |
84 | 84 | { |
85 | - $loader->load(function (ContainerBuilder $container) use ($loader) { |
|
85 | + $loader->load(function(ContainerBuilder $container) use ($loader) { |
|
86 | 86 | $this->configureContainer($container, $loader); |
87 | 87 | |
88 | 88 | $container->addObjectResource($this); ////////////// TODO understand and consider necessity. |
@@ -209,7 +209,7 @@ |
||
209 | 209 | { // from Symfony\Bundle\FrameworkBundle\Kernel\MicroKernelTrait |
210 | 210 | $routes->add( |
211 | 211 | '/', |
212 | - function () { |
|
212 | + function() { |
|
213 | 213 | return new Response('Hello'); |
214 | 214 | }, |
215 | 215 | 'index' |
@@ -87,7 +87,7 @@ discard block |
||
87 | 87 | ->willReturn([ |
88 | 88 | '_route' => 'foo', |
89 | 89 | 'name' => 'Fabien', |
90 | - '_controller' => function ($name) { |
|
90 | + '_controller' => function($name) { |
|
91 | 91 | return new Response('Hello '.$name); |
92 | 92 | }, |
93 | 93 | // ])) |
@@ -210,7 +210,7 @@ discard block |
||
210 | 210 | { // from Symfony\Bundle\FrameworkBundle\Kernel\MicroKernelTrait |
211 | 211 | $routes->add( |
212 | 212 | '/', |
213 | - function () { |
|
213 | + function() { |
|
214 | 214 | return new Response('Hello'); |
215 | 215 | }, |
216 | 216 | 'index' |