@@ -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' |