Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
39 | public function __construct(string $token, string $scope, string $clientIdentifier, string $resourceOwnerIdentifier, |
||
40 | int $expiresAt, ?string $authorizationCode = null) |
||
41 | { |
||
42 | $this->token = $token; |
||
43 | $this->scope = $scope; |
||
44 | $this->clientIdentifier = $clientIdentifier; |
||
45 | $this->resourceOwnerIdentifier = $resourceOwnerIdentifier; |
||
46 | $this->expiresAt = $expiresAt; |
||
47 | $this->authorizationCode = $authorizationCode; |
||
48 | } |
||
99 | } |