@@ -78,7 +78,7 @@ discard block |
||
78 | 78 | ->will($this->returnValue([ |
79 | 79 | '_route' => 'foo', |
80 | 80 | 'name' => 'Fabien', |
81 | - '_controller' => function ($name) { |
|
81 | + '_controller' => function($name) { |
|
82 | 82 | return new Response('Hello '.$name); |
83 | 83 | }, |
84 | 84 | ])) |
@@ -172,7 +172,7 @@ discard block |
||
172 | 172 | { // from Symfony\Bundle\FrameworkBundle\Kernel\MicroKernelTrait |
173 | 173 | $routes->add( |
174 | 174 | '/', |
175 | - function () { |
|
175 | + function() { |
|
176 | 176 | return new Response('Hello'); |
177 | 177 | }, |
178 | 178 | 'index' |