Failed Conditions
Push — master ( f9dbd2...30e6d9 )
by Florent
06:38 queued 02:30
created
src/Component/Server/GrantType/GrantTypeInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -39,6 +39,7 @@
 block discarded – undo
39 39
      * @param ServerRequestInterface $request The request
40 40
      *
41 41
      * @throws OAuth2Exception
42
+     * @return void
42 43
      */
43 44
     public function checkTokenRequest(ServerRequestInterface $request);
44 45
 
Please login to merge, or discard this patch.
src/Component/Server/Model/AccessToken/AccessTokenRepositoryInterface.php 1 patch
Doc Comments   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@  discard block
 block discarded – undo
26 26
      * @param ClientId                $clientId
27 27
      * @param DataBag                 $parameters
28 28
      * @param DataBag                 $metadatas
29
-     * @param array                   $scopes
29
+     * @param string[]                   $scopes
30 30
      * @param null|RefreshTokenId     $refreshTokenId
31 31
      * @param null|ResourceServerId   $resourceServerId
32 32
      * @param \DateTimeImmutable|null $expiresAt
@@ -37,6 +37,7 @@  discard block
 block discarded – undo
37 37
 
38 38
     /**
39 39
      * @param AccessToken $token
40
+     * @return void
40 41
      */
41 42
     public function save(AccessToken $token);
42 43
 
Please login to merge, or discard this patch.
src/Component/Server/Model/AuthCode/AuthCodeRepositoryInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -38,6 +38,7 @@
 block discarded – undo
38 38
 
39 39
     /**
40 40
      * @param AuthCode $authCode
41
+     * @return void
41 42
      */
42 43
     public function save(AuthCode $authCode);
43 44
 
Please login to merge, or discard this patch.
src/Component/Server/Model/Client/ClientRepositoryInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -19,6 +19,7 @@
 block discarded – undo
19 19
      * Save the client.
20 20
      *
21 21
      * @param Client $client
22
+     * @return void
22 23
      */
23 24
     public function save(Client $client);
24 25
 
Please login to merge, or discard this patch.
src/Component/Server/Model/Event/EventStoreInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -19,6 +19,7 @@
 block discarded – undo
19 19
 {
20 20
     /**
21 21
      * @param Event $event
22
+     * @return void
22 23
      */
23 24
     public function save(Event $event);
24 25
 
Please login to merge, or discard this patch.
Server/Model/InitialAccessToken/InitialAccessTokenRepositoryInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -27,6 +27,7 @@
 block discarded – undo
27 27
 
28 28
     /**
29 29
      * @param InitialAccessToken $initialAccessToken
30
+     * @return void
30 31
      */
31 32
     public function save(InitialAccessToken $initialAccessToken);
32 33
 
Please login to merge, or discard this patch.
PreConfiguredAuthorizationRepositoryInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -31,6 +31,7 @@
 block discarded – undo
31 31
 
32 32
     /**
33 33
      * @param PreConfiguredAuthorization $preConfiguredAuthorization
34
+     * @return void
34 35
      */
35 36
     public function save(PreConfiguredAuthorization $preConfiguredAuthorization);
36 37
 
Please login to merge, or discard this patch.
src/Component/Server/Model/RefreshToken/RefreshTokenRepositoryInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -39,6 +39,7 @@
 block discarded – undo
39 39
 
40 40
     /**
41 41
      * @param RefreshToken $refreshToken
42
+     * @return void
42 43
      */
43 44
     public function save(RefreshToken $refreshToken);
44 45
 
Please login to merge, or discard this patch.
src/Component/Server/TokenTypeHint/TokenTypeHintInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -31,6 +31,7 @@
 block discarded – undo
31 31
 
32 32
     /**
33 33
      * @param Token $token
34
+     * @return void
34 35
      */
35 36
     public function revoke(Token $token);
36 37
 
Please login to merge, or discard this patch.