Completed
Pull Request — master (#1)
by Beñat
02:39
created
SymfonyRoutingBridge/Infrastructure/Routing/SymfonyUserUrlGeneratorSpec.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -43,7 +43,7 @@
 block discarded – undo
43 43
     {
44 44
         $urlGenerator->generate(
45 45
             'bengor_user_user_homepage',
46
-            ['token' => 'the-token'],
46
+            [ 'token' => 'the-token' ],
47 47
             UrlGeneratorInterface::ABSOLUTE_URL
48 48
         )->shouldBeCalled()->willReturn('/');
49 49
 
Please login to merge, or discard this patch.
SymfonyRoutingBridge/Infrastructure/Routing/SymfonyUserUrlGenerator.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -55,7 +55,7 @@
 block discarded – undo
55 55
     {
56 56
         return $this->urlGenerator->generate(
57 57
             $this->pathName,
58
-            ['token' => $aToken],
58
+            [ 'token' => $aToken ],
59 59
             UrlGeneratorInterface::ABSOLUTE_URL
60 60
         );
61 61
     }
Please login to merge, or discard this patch.