Test Setup Failed
Pull Request — master (#81)
by
unknown
10:15 queued 02:33
created
Entity/RefreshToken.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -113,7 +113,7 @@
 block discarded – undo
113 113
     /**
114 114
      * Get valid.
115 115
      *
116
-     * @return \DateTime
116
+     * @return string
117 117
      */
118 118
     public function getValid()
119 119
     {
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
@@ -36,6 +36,9 @@  discard block
 block discarded – undo
36 36
  */
37 37
 class RefreshTokenAuthenticator extends RefreshTokenAuthenticatorBase implements AuthenticationFailureHandlerInterface
38 38
 {
39
+    /**
40
+     * @param string $providerKey
41
+     */
39 42
     public function createToken(Request $request, $providerKey)
40 43
     {
41 44
         $refreshTokenString = RequestRefreshToken::getRefreshToken($request);
@@ -47,6 +50,9 @@  discard block
 block discarded – undo
47 50
         );
48 51
     }
49 52
 
53
+    /**
54
+     * @param string $providerKey
55
+     */
50 56
     public function authenticateToken(TokenInterface $token, UserProviderInterface $userProvider, $providerKey)
51 57
     {
52 58
         if (!$userProvider instanceof RefreshTokenProvider) {
Please login to merge, or discard this patch.
Model/RefreshTokenInterface.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -58,7 +58,7 @@  discard block
 block discarded – undo
58 58
     /**
59 59
      * Set username.
60 60
      *
61
-     * @param $username
61
+     * @param string $username
62 62
      *
63 63
      * @return self
64 64
      */
@@ -67,7 +67,7 @@  discard block
 block discarded – undo
67 67
     /**
68 68
      * Get user.
69 69
      *
70
-     * @return $username
70
+     * @return string
71 71
      */
72 72
     public function getUsername();
73 73
 
Please login to merge, or discard this patch.