@@ -86,7 +86,7 @@ discard block |
||
86 | 86 | ->willReturn($this->returnValue([ |
87 | 87 | '_route' => 'foo', |
88 | 88 | 'name' => 'Fabien', |
89 | - '_controller' => function ($name) { |
|
89 | + '_controller' => function($name) { |
|
90 | 90 | return new Response('Hello '.$name); |
91 | 91 | }, |
92 | 92 | ])) |
@@ -207,7 +207,7 @@ discard block |
||
207 | 207 | { // from Symfony\Bundle\FrameworkBundle\Kernel\MicroKernelTrait |
208 | 208 | $routes->add( |
209 | 209 | '/', |
210 | - function () { |
|
210 | + function() { |
|
211 | 211 | return new Response('Hello'); |
212 | 212 | }, |
213 | 213 | 'index' |