Failed Conditions
Push — master ( aacec5...b5a0b4 )
by Florent
04:50
created
src/ServerBundle/Component/OpenIdConnect/UserinfoEndpointSource.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -14,8 +14,8 @@
 block discarded – undo
14 14
 namespace OAuth2Framework\ServerBundle\Component\OpenIdConnect;
15 15
 
16 16
 use OAuth2Framework\ServerBundle\Component\Component;
17
-use OAuth2Framework\ServerBundle\Component\OpenIdConnect\Compiler\UserinfoRouteCompilerPass;
18 17
 use OAuth2Framework\ServerBundle\Component\OpenIdConnect\Compiler\UserInfoScopeSupportCompilerPass;
18
+use OAuth2Framework\ServerBundle\Component\OpenIdConnect\Compiler\UserinfoRouteCompilerPass;
19 19
 use Symfony\Component\Config\Definition\Builder\ArrayNodeDefinition;
20 20
 use Symfony\Component\Config\FileLocator;
21 21
 use Symfony\Component\DependencyInjection\ContainerBuilder;
Please login to merge, or discard this patch.
src/Component/ClientRegistrationEndpoint/InitialAccessTokenRepository.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -15,6 +15,9 @@
 block discarded – undo
15 15
 
16 16
 interface InitialAccessTokenRepository
17 17
 {
18
+    /**
19
+     * @return void
20
+     */
18 21
     public function save(InitialAccessToken $initialAccessToken);
19 22
 
20 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
@@ -17,6 +17,7 @@
 block discarded – undo
17 17
 {
18 18
     /**
19 19
      * Save the client.
20
+     * @return void
20 21
      */
21 22
     public function save(Client $client);
22 23
 
Please login to merge, or discard this patch.
src/Component/ResourceServerAuthentication/AuthenticationMiddleware.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -51,6 +51,9 @@
 block discarded – undo
51 51
         return $handler->handle($request);
52 52
     }
53 53
 
54
+    /**
55
+     * @param ResourceServer|null $resourceServer
56
+     */
54 57
     private function checkResourceServer(?ResourceServer $resourceServer): void
55 58
     {
56 59
         if (null === $resourceServer) {
Please login to merge, or discard this patch.
src/Component/Scope/Scope.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -17,6 +17,9 @@
 block discarded – undo
17 17
 {
18 18
     public function name(): string;
19 19
 
20
+    /**
21
+     * @return string|null
22
+     */
20 23
     public function parent(): ?string;
21 24
 
22 25
     public function isParentMandatory(): bool;
Please login to merge, or discard this patch.
src/Component/Core/AccessToken/AccessTokenHandler.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -15,5 +15,8 @@
 block discarded – undo
15 15
 
16 16
 interface AccessTokenHandler
17 17
 {
18
+    /**
19
+     * @return AccessToken|null
20
+     */
18 21
     public function find(AccessTokenId $token): ?AccessToken;
19 22
 }
Please login to merge, or discard this patch.
src/Component/Core/TrustedIssuer/TrustedIssuerRepository.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -15,5 +15,8 @@
 block discarded – undo
15 15
 
16 16
 interface TrustedIssuerRepository
17 17
 {
18
+    /**
19
+     * @return void
20
+     */
18 21
     public function find(string $trustedIssuer): ?TrustedIssuer;
19 22
 }
Please login to merge, or discard this patch.
src/Component/WebFingerEndpoint/ResourceRepository.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -17,5 +17,8 @@
 block discarded – undo
17 17
 
18 18
 interface ResourceRepository
19 19
 {
20
+    /**
21
+     * @return null|ResourceDescriptor
22
+     */
20 23
     public function find(string $resource, Identifier $identifier): ?ResourceDescriptor;
21 24
 }
Please login to merge, or discard this patch.
src/SecurityBundle/Annotation/Checker/Checker.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -18,5 +18,8 @@
 block discarded – undo
18 18
 
19 19
 interface Checker
20 20
 {
21
+    /**
22
+     * @return void
23
+     */
21 24
     public function check(OAuth2Token $token, OAuth2 $configuration): void;
22 25
 }
Please login to merge, or discard this patch.