Failed Conditions
Push — master ( a3629e...b4f6c5 )
by Florent
08:47
created
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.