| 1 | <?php |
||
| 23 | final class AuthorizationCode extends AbstractAuthorizationCode |
||
| 24 | { |
||
| 25 | /** |
||
| 26 | * @var AuthorizationCodeId |
||
| 27 | */ |
||
| 28 | private $id; |
||
| 29 | |||
| 30 | public function __construct(AuthorizationCodeId $id, ClientId $clientId, UserAccountId $userAccountId, array $queryParameters, string $redirectUri, \DateTimeImmutable $expiresAt, DataBag $parameter, DataBag $metadata, ?ResourceServerId $resourceServerId) |
||
| 35 | |||
| 36 | public function getId(): AuthorizationCodeId |
||
| 40 | } |
||
| 41 |