Failed Conditions
Branch ng (7370de)
by Florent
15:26
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.
AuthorizationEndpoint/Command/CreatePreConfiguredAuthorizationCommand.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -102,7 +102,7 @@
 block discarded – undo
102 102
     }
103 103
 
104 104
     /**
105
-     * @return array
105
+     * @return string[]
106 106
      */
107 107
     public function getScopes(): array
108 108
     {
Please login to merge, or discard this patch.
AuthorizationEndpoint/Command/RevokePreConfiguredAuthorizationCommand.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -88,7 +88,7 @@
 block discarded – undo
88 88
     }
89 89
 
90 90
     /**
91
-     * @return array
91
+     * @return string[]
92 92
      */
93 93
     public function getScopes(): array
94 94
     {
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/AccessToken/Command/CreateAccessTokenCommand.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -135,7 +135,7 @@
 block discarded – undo
135 135
     }
136 136
 
137 137
     /**
138
-     * @return array
138
+     * @return string[]
139 139
      */
140 140
     public function getScopes(): array
141 141
     {
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.