| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 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 | } |
||
| 36 |