Total Complexity | 3 |
Total Lines | 27 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
7 | final class RefreshTokenClientFailed extends AbstractEvent |
||
8 | { |
||
9 | /** @var string|null */ |
||
10 | private $clientId; |
||
11 | |||
12 | /** @var array */ |
||
13 | private $refreshTokenData; |
||
14 | |||
15 | public function __construct( |
||
16 | ?string $clientId, |
||
17 | array $refreshTokenData, |
||
18 | ServerRequestInterface $request |
||
19 | ) { |
||
20 | parent::__construct($request); |
||
21 | $this->name = 'refresh_token.client.failed'; |
||
22 | $this->clientId = $clientId; |
||
23 | $this->refreshTokenData = $refreshTokenData; |
||
24 | } |
||
25 | |||
26 | public function getClientId(): ?string |
||
29 | } |
||
30 | |||
31 | public function getRefreshTokenData(): array |
||
34 | } |
||
35 | } |