Failed Conditions
Push — master ( 2dd3b4...d9d1a0 )
by Florent
10:53
created
src/Component/OpenIdConnect/IdTokenLoader.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -58,7 +58,7 @@
 block discarded – undo
58 58
     /**
59 59
      * @param IdTokenId $idTokenId
60 60
      *
61
-     * @return IdToken|null
61
+     * @return \self|null
62 62
      */
63 63
     public function load(IdTokenId $idTokenId): ? IdToken
64 64
     {
Please login to merge, or discard this patch.
src/Component/TokenRevocationEndpoint/TokenTypeHint.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.
src/Component/TokenEndpoint/GrantTypeData.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -54,7 +54,7 @@
 block discarded – undo
54 54
     /**
55 55
      * @param Client|null $client
56 56
      *
57
-     * @return GrantTypeData
57
+     * @return callable
58 58
      */
59 59
     public static function create(? Client $client): self
60 60
     {
Please login to merge, or discard this patch.
src/Component/ClientRegistrationEndpoint/InitialAccessTokenRepository.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -17,6 +17,7 @@
 block discarded – undo
17 17
 {
18 18
     /**
19 19
      * @param InitialAccessToken $initialAccessToken
20
+     * @return void
20 21
      */
21 22
     public function save(InitialAccessToken $initialAccessToken);
22 23
 
Please login to merge, or discard this patch.
src/Component/Core/Client/ClientRepository.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/RefreshTokenGrant/RefreshTokenRepository.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -21,6 +21,7 @@
 block discarded – undo
21 21
 {
22 22
     /**
23 23
      * @param RefreshToken $refreshToken
24
+     * @return void
24 25
      */
25 26
     public function save(RefreshToken $refreshToken);
26 27
 
Please login to merge, or discard this patch.
src/Component/AuthorizationCodeGrant/AuthorizationCodeRepository.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -28,6 +28,7 @@
 block discarded – undo
28 28
 
29 29
     /**
30 30
      * @param AuthorizationCode $authorizationCode
31
+     * @return void
31 32
      */
32 33
     public function save(AuthorizationCode $authorizationCode): void;
33 34
 }
Please login to merge, or discard this patch.
src/ServerBundle/Component/Component.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -26,16 +26,19 @@
 block discarded – undo
26 26
     /**
27 27
      * @param array            $configs
28 28
      * @param ContainerBuilder $container
29
+     * @return void
29 30
      */
30 31
     public function load(array $configs, ContainerBuilder $container);
31 32
 
32 33
     /**
33 34
      * @param ContainerBuilder $container
35
+     * @return void
34 36
      */
35 37
     public function build(ContainerBuilder $container);
36 38
 
37 39
     /**
38 40
      * @param NodeDefinition $node
41
+     * @return void
39 42
      */
40 43
     public function getNodeDefinition(ArrayNodeDefinition $node, ArrayNodeDefinition $rootNode);
41 44
 
Please login to merge, or discard this patch.
src/Component/TokenEndpoint/Extension/TokenEndpointExtensionManager.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -71,7 +71,7 @@  discard block
 block discarded – undo
71 71
     /**
72 72
      * @param int $index
73 73
      *
74
-     * @return callable
74
+     * @return \Closure
75 75
      *
76 76
      * @throws OAuth2Message
77 77
      */
@@ -92,7 +92,7 @@  discard block
 block discarded – undo
92 92
     /**
93 93
      * @param int $index
94 94
      *
95
-     * @return callable
95
+     * @return \Closure
96 96
      *
97 97
      * @throws OAuth2Message
98 98
      */
Please login to merge, or discard this patch.