1 | <?php |
||
19 | final class HeaderCheckedSuccessEvent extends Event |
||
20 | { |
||
21 | /** |
||
22 | * @var JWT |
||
23 | */ |
||
24 | private $jwt; |
||
25 | |||
26 | /** |
||
27 | * @var int |
||
28 | */ |
||
29 | private $index; |
||
30 | |||
31 | /** |
||
32 | * @var array |
||
33 | */ |
||
34 | private $mandatoryHeaderParameters; |
||
35 | |||
36 | public function __construct(JWT $jwt, int $index, array $mandatoryHeaderParameters) |
||
42 | |||
43 | public function getJwt(): JWT |
||
47 | |||
48 | public function getIndex(): int |
||
52 | |||
53 | public function getMandatoryHeaderParameters(): array |
||
57 | } |
||
58 |