Failed Conditions
Push — master ( 2d5f15...0699e7 )
by Florent
14:17
created
src/Component/OpenIdConnect/IdTokenBuilder.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -148,6 +148,10 @@
 block discarded – undo
148 148
      */
149 149
     private $authorizationCodeRepository;
150 150
 
151
+    /**
152
+     * @param JKUFactory|null $jkuFactory
153
+     * @param AuthorizationCodeRepository|null $authorizationCodeRepository
154
+     */
151 155
     public function __construct(string $issuer, UserInfo $userinfo, int $lifetime, Client $client, UserAccount $userAccount, string $redirectUri, ?JKUFactory $jkuFactory, ?AuthorizationCodeRepository $authorizationCodeRepository)
152 156
     {
153 157
         $this->issuer = $issuer;
Please login to merge, or discard this patch.
src/Component/TokenEndpoint/TokenEndpoint.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -63,6 +63,9 @@
 block discarded – undo
63 63
      */
64 64
     private $accessTokenLifetime;
65 65
 
66
+    /**
67
+     * @param UserAccountRepository $userAccountRepository
68
+     */
66 69
     public function __construct(ClientRepository $clientRepository, ?UserAccountRepository $userAccountRepository, TokenEndpointExtensionManager $tokenEndpointExtensionManager, ResponseFactory $responseFactory, AccessTokenRepository $accessTokenRepository, int $accessLifetime)
67 70
     {
68 71
         $this->clientRepository = $clientRepository;
Please login to merge, or discard this patch.