Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
43 | public function __construct(string $token, array $scopes, string $clientIdentifier, ?string $resourceOwnerIdentifier, |
||
44 | \DateTimeInterface $expiresAt, ?string $authorizationCode = null, ?string $refreshToken = null) |
||
45 | { |
||
46 | $this->token = $token; |
||
47 | $this->scopes = $scopes; |
||
48 | $this->clientIdentifier = $clientIdentifier; |
||
49 | $this->resourceOwnerIdentifier = $resourceOwnerIdentifier; |
||
50 | $this->expiresAt = $expiresAt; |
||
51 | $this->authorizationCode = $authorizationCode; |
||
52 | $this->refreshToken = $refreshToken; |
||
53 | } |
||
103 | } |