Completed
Pull Request — master (#11)
by
unknown
03:18
created
DependencyInjection/Configuration.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@
 block discarded – undo
20 20
                     ])
21 21
                     ->useAttributeAsKey('class')
22 22
                     ->prototype('array')
23
-                        ->beforeNormalization()->ifString()->then(function ($v) {
23
+                        ->beforeNormalization()->ifString()->then(function($v) {
24 24
                             return ['route' => $v];
25 25
                         })->end()
26 26
                         ->children()
Please login to merge, or discard this patch.
Tests/Security/FormAuthenticatorTest.php 2 patches
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -87,6 +87,9 @@
 block discarded – undo
87 87
         return $mock;
88 88
     }
89 89
 
90
+    /**
91
+     * @return \Symfony\Component\Security\Core\User\UserInterface
92
+     */
90 93
     private function getUser($username = 'wouter', $password = 'test', $displayName = 'Wouter Sioen')
91 94
     {
92 95
         $mock = $this->getMock(User::class, [], [$username, $password, $displayName]);
Please login to merge, or discard this patch.
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -8,7 +8,6 @@
 block discarded – undo
8 8
 use SumoCoders\FrameworkMultiUserBundle\Security\ObjectUserProvider;
9 9
 use SumoCoders\FrameworkMultiUserBundle\User\InMemoryUserRepository;
10 10
 use SumoCoders\FrameworkMultiUserBundle\User\User;
11
-use Symfony\Bundle\FrameworkBundle\Routing\Router;
12 11
 use Symfony\Component\HttpFoundation\Request;
13 12
 use Symfony\Component\HttpFoundation\Session\Session;
14 13
 use Symfony\Component\HttpFoundation\Session\Storage\MockArraySessionStorage;
Please login to merge, or discard this patch.