Test Setup Failed
Pull Request — master (#142)
by
unknown
02:43
created
Doctrine/RefreshTokenManager.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -97,7 +97,7 @@
 block discarded – undo
97 97
      * @param \DateTime $datetime
98 98
      * @param bool      $andFlush
99 99
      *
100
-     * @return RefreshTokenInterface[]
100
+     * @return \Gesdinet\JWTRefreshTokenBundle\Entity\RefreshToken[]
101 101
      */
102 102
     public function revokeAllInvalid($datetime = null, $andFlush = true)
103 103
     {
Please login to merge, or discard this patch.
Security/Authenticator/RefreshTokenAuthenticator.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -59,6 +59,9 @@  discard block
 block discarded – undo
59 59
         $this->tokenParameterName = $tokenParameterName;
60 60
     }
61 61
 
62
+    /**
63
+     * @param string $providerKey
64
+     */
62 65
     public function createToken(Request $request, $providerKey)
63 66
     {
64 67
         $refreshTokenString = RequestRefreshToken::getRefreshToken($request, $this->tokenParameterName);
@@ -70,6 +73,9 @@  discard block
 block discarded – undo
70 73
         );
71 74
     }
72 75
 
76
+    /**
77
+     * @param string $providerKey
78
+     */
73 79
     public function authenticateToken(TokenInterface $token, UserProviderInterface $userProvider, $providerKey)
74 80
     {
75 81
         if (!$userProvider instanceof RefreshTokenProvider) {
Please login to merge, or discard this patch.