Completed
Push — master ( 322cce...dad898 )
by
unknown
12s
created
DependencyInjection/Security/UserProvider/InMemoryApiFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -74,7 +74,7 @@
 block discarded – undo
74 74
                         ->children()
75 75
                             ->scalarNode('password')->defaultValue(uniqid('', true))->end()
76 76
                             ->arrayNode('roles')
77
-                                ->beforeNormalization()->ifString()->then(function ($v) {
77
+                                ->beforeNormalization()->ifString()->then(function($v) {
78 78
                                     return preg_split('/\s*,\s*/', $v);
79 79
                                 })
80 80
                                 ->end()
Please login to merge, or discard this patch.
Security/Authentication/SimplePreAuthenticator.php 1 patch
Doc Comments   +2 added lines patch added patch discarded remove patch
@@ -76,6 +76,7 @@  discard block
 block discarded – undo
76 76
 
77 77
     /**
78 78
      * {@inheritdoc}
79
+     * @param string $providerKey
79 80
      */
80 81
     public function supportsToken(TokenInterface $token, $providerKey)
81 82
     {
@@ -84,6 +85,7 @@  discard block
 block discarded – undo
84 85
 
85 86
     /**
86 87
      * {@inheritdoc}
88
+     * @param string $providerKey
87 89
      */
88 90
     public function authenticateToken(TokenInterface $token, UserProviderInterface $userProvider, $providerKey)
89 91
     {
Please login to merge, or discard this patch.