@@ -25,6 +25,9 @@ |
||
| 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; |
@@ -25,6 +25,9 @@ |
||
| 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; |
@@ -56,6 +56,10 @@ |
||
| 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; |