Failed Conditions
Push — ng ( c473a9...096318 )
by Florent
37:43 queued 11:30
created
src/Bundle/Server/DependencyInjection/Source/SourceInterface.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -22,11 +22,13 @@  discard block
 block discarded – undo
22 22
      * @param string           $path
23 23
      * @param ContainerBuilder $container
24 24
      * @param array            $config
25
+     * @return void
25 26
      */
26 27
     public function load(string $path, ContainerBuilder $container, array $config);
27 28
 
28 29
     /**
29 30
      * @param NodeDefinition $node
31
+     * @return void
30 32
      */
31 33
     public function addConfiguration(NodeDefinition $node);
32 34
 
@@ -34,6 +36,7 @@  discard block
 block discarded – undo
34 36
      * @param array            $bundleConfig
35 37
      * @param string           $path
36 38
      * @param ContainerBuilder $container
39
+     * @return void
37 40
      */
38 41
     public function prepend(array $bundleConfig, string $path, ContainerBuilder $container);
39 42
 }
Please login to merge, or discard this patch.
Server/AuthorizationCodeGrant/Command/CreateAuthorizationCodeCommand.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -167,7 +167,7 @@
 block discarded – undo
167 167
     }
168 168
 
169 169
     /**
170
-     * @return array
170
+     * @return string[]
171 171
      */
172 172
     public function getScopes(): array
173 173
     {
Please login to merge, or discard this patch.
ParameterChecker/ResponseTypeAndResponseModeParameterChecker.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -103,7 +103,7 @@
 block discarded – undo
103 103
     }
104 104
 
105 105
     /**
106
-     * @param array  $types
106
+     * @param ResponseType[]  $types
107 107
      * @param string $responseType
108 108
      *
109 109
      * @return string
Please login to merge, or discard this patch.
src/Component/Server/Core/Client/Rule/Rule.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,6 @@
 block discarded – undo
22 22
      * @param ClientId           $clientId
23 23
      * @param DataBag            $commandParameters
24 24
      * @param DataBag            $validatedParameters
25
-     * @param UserAccountId|null $userAccountId
26 25
      * @param callable           $next
27 26
      *
28 27
      * @return DataBag
Please login to merge, or discard this patch.
src/Component/Server/IssuerDiscoveryEndpoint/IssuerDiscoveryEndpoint.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -99,7 +99,7 @@
 block discarded – undo
99 99
 
100 100
     /**
101 101
      * @param ResourceId $resourceName
102
-     * @param resource   $resource
102
+     * @param Resource   $resource
103 103
      *
104 104
      * @return array
105 105
      */
Please login to merge, or discard this patch.
src/Component/Server/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.
Component/Server/RefreshTokenGrant/Command/CreateRefreshTokenCommand.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -92,7 +92,7 @@
 block discarded – undo
92 92
      * @param \DateTimeImmutable    $expiresAt
93 93
      * @param DataBag               $parameters
94 94
      * @param DataBag               $metadatas
95
-     * @param array                 $scopes
95
+     * @param string[]                 $scopes
96 96
      * @param null|ResourceServerId $resourceServerId
97 97
      *
98 98
      * @return CreateRefreshTokenCommand
Please login to merge, or discard this patch.
src/Component/Server/TokenEndpoint/GrantType.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/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.