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