Test Failed
Push — master ( 3fef74...70b92e )
by Jean-Bernard
08:32
created
tests/Component/AppKernel.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -82,7 +82,7 @@
 block discarded – undo
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.
Please login to merge, or discard this patch.
tests/Component/InKernelTemplatingControllerTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -209,7 +209,7 @@
 block discarded – undo
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'
Please login to merge, or discard this patch.
tests/Component/EngineAsArgumentInKernelControllerTest.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -86,7 +86,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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'
Please login to merge, or discard this patch.