Conditions | 1 |
Paths | 1 |
Total Lines | 6 |
Code Lines | 2 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
25 | public function __construct(string $token, array $scopes, string $clientIdentifier, |
||
26 | ?string $resourceOwnerIdentifier, |
||
27 | \DateTimeInterface $expiresAt, ?string $authorizationCode = null) |
||
28 | { |
||
29 | parent::__construct('bearer', $token, $scopes, $clientIdentifier, $resourceOwnerIdentifier, $expiresAt, |
||
30 | $authorizationCode); |
||
31 | } |
||
32 | } |