| Total Complexity | 2 |
| Total Lines | 17 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 8 | final class RefreshTokenIssued extends AbstractEvent |
||
| 9 | { |
||
| 10 | /** @var RefreshTokenEntityInterface */ |
||
| 11 | private $refreshToken; |
||
| 12 | |||
| 13 | public function __construct( |
||
| 14 | RefreshTokenEntityInterface $refreshToken, |
||
| 15 | ServerRequestInterface $request |
||
| 16 | ) { |
||
| 17 | parent::__construct($request); |
||
| 18 | $this->name = 'refresh_token.issued'; |
||
| 19 | $this->refreshToken = $refreshToken; |
||
| 20 | } |
||
| 21 | |||
| 22 | public function getRefreshToken(): RefreshTokenEntityInterface |
||
| 25 | } |
||
| 26 | } |
||
| 27 |