Failed Conditions
Push — master ( a3629e...b4f6c5 )
by Florent
08:47
created
src/Component/TokenRevocationEndpoint/TokenTypeHint.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -19,7 +19,13 @@
 block discarded – undo
19 19
 {
20 20
     public function hint(): string;
21 21
 
22
+    /**
23
+     * @return Token
24
+     */
22 25
     public function find(string $token): ?Token;
23 26
 
27
+    /**
28
+     * @return void
29
+     */
24 30
     public function revoke(Token $token);
25 31
 }
Please login to merge, or discard this patch.
src/SecurityBundle/Annotation/Checker/Checker.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -20,6 +20,7 @@
 block discarded – undo
20 20
 {
21 21
     /**
22 22
      * @throws \Exception
23
+     * @return void
23 24
      */
24 25
     public function check(OAuth2Token $token, OAuth2 $configuration): void;
25 26
 }
Please login to merge, or discard this patch.
src/ServerBundle/Component/Component.php 1 patch
Doc Comments   +8 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,12 +20,19 @@
 block discarded – undo
20 20
 {
21 21
     public function name(): string;
22 22
 
23
+    /**
24
+     * @return void
25
+     */
23 26
     public function load(array $configs, ContainerBuilder $container);
24 27
 
28
+    /**
29
+     * @return void
30
+     */
25 31
     public function build(ContainerBuilder $container);
26 32
 
27 33
     /**
28
-     * @param NodeDefinition $node
34
+     * @param ArrayNodeDefinition $node
35
+     * @return void
29 36
      */
30 37
     public function getNodeDefinition(ArrayNodeDefinition $node, ArrayNodeDefinition $rootNode);
31 38
 
Please login to merge, or discard this patch.
src/Component/ClientRegistrationEndpoint/InitialAccessToken.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -25,6 +25,9 @@
 block discarded – undo
25 25
     private $expiresAt;
26 26
     private $userAccountId;
27 27
 
28
+    /**
29
+     * @param \DateTimeImmutable|null $expiresAt
30
+     */
28 31
     public function __construct(InitialAccessTokenId $initialAccessTokenId, UserAccountId $userAccountId, ?\DateTimeImmutable $expiresAt)
29 32
     {
30 33
         $this->initialAccessTokenId = $initialAccessTokenId;
Please login to merge, or discard this patch.
src/Component/Core/Client/Event/ClientCreatedEvent.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -25,6 +25,9 @@
 block discarded – undo
25 25
     private $parameters;
26 26
     private $userAccountId;
27 27
 
28
+    /**
29
+     * @param UserAccountId $userAccountId
30
+     */
28 31
     public function __construct(ClientId $clientId, DataBag $parameters, ?UserAccountId $userAccountId)
29 32
     {
30 33
         $this->clientId = $clientId;
Please login to merge, or discard this patch.
src/Component/OpenIdConnect/IdTokenBuilder.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -56,6 +56,10 @@
 block discarded – undo
56 56
     private $jkuFactory = null;
57 57
     private $authorizationCodeRepository = null;
58 58
 
59
+    /**
60
+     * @param null|JKUFactory $jkuFactory
61
+     * @param null|AuthorizationCodeRepository $authorizationCodeRepository
62
+     */
59 63
     public function __construct(string $issuer, UserInfo $userinfo, int $lifetime, Client $client, UserAccount $userAccount, string $redirectUri, ?JKUFactory $jkuFactory, ?AuthorizationCodeRepository $authorizationCodeRepository)
60 64
     {
61 65
         $this->issuer = $issuer;
Please login to merge, or discard this patch.
src/Component/OpenIdConnect/UserInfo/UserInfo.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -52,6 +52,9 @@
 block discarded – undo
52 52
         $this->claimSourceManager = $claimSourceManager;
53 53
     }
54 54
 
55
+    /**
56
+     * @param string $claimsLocales
57
+     */
55 58
     public function getUserinfo(Client $client, UserAccount $userAccount, string $redirectUri, array $requestedClaims, string $scope, ?string $claimsLocales): array
56 59
     {
57 60
         $requestedClaims = \array_merge(
Please login to merge, or discard this patch.