Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
42 | public function __construct(string $code, string $scope, string $clientIdentifier, string $resourceOwnerIdentifier, |
||
43 | 2 | int $expiresAt, ?string $requestedScope = null, ?string $redirectUri = null) |
|
44 | { |
||
45 | $this->code = $code; |
||
46 | 2 | $this->scope = $scope; |
|
47 | 2 | $this->clientIdentifier = $clientIdentifier; |
|
48 | 2 | $this->resourceOwnerIdentifier = $resourceOwnerIdentifier; |
|
49 | 2 | $this->expiresAt = $expiresAt; |
|
50 | 2 | $this->requestedScope = $requestedScope; |
|
51 | 2 | $this->redirectUri = $redirectUri; |
|
52 | 2 | } |
|
106 | } |