Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
39 | public function __construct(string $token, array $scopes, string $clientIdentifier, ?string $resourceOwnerIdentifier, |
||
40 | \DateTimeInterface $expiresAt, ?string $authorizationCode = null) |
||
41 | { |
||
42 | $this->token = $token; |
||
43 | $this->scopes = $scopes; |
||
44 | $this->clientIdentifier = $clientIdentifier; |
||
45 | $this->resourceOwnerIdentifier = $resourceOwnerIdentifier; |
||
46 | $this->expiresAt = $expiresAt; |
||
47 | $this->authorizationCode = $authorizationCode; |
||
48 | } |
||
97 | } |