Total Complexity | 3 |
Total Lines | 28 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
12 | class AuthorizationCode extends \OAuth2\Credentials\AuthorizationCode implements AuthorizationCodeInterface |
||
13 | { |
||
14 | |||
15 | /** |
||
16 | * @var string|null |
||
17 | */ |
||
18 | protected $idToken; |
||
19 | |||
20 | public function __construct(string $code, string $scope, string $clientIdentifier, string $resourceOwnerIdentifier, |
||
27 | } |
||
28 | |||
29 | public function getIdToken(): ?string |
||
32 | } |
||
33 | |||
34 | /** |
||
35 | * @param null|string $idToken |
||
36 | */ |
||
37 | public function setIdToken(?string $idToken): void |
||
40 | } |
||
41 | } |