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