@@ -148,6 +148,10 @@ |
||
| 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; |
@@ -63,6 +63,9 @@ |
||
| 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; |