Total Complexity | 5 |
Total Lines | 28 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
10 | class ListenerExceptionEvent extends Event |
||
11 | { |
||
12 | 6 | public function __construct( |
|
18 | } |
||
19 | |||
20 | 1 | public function getEvent(): Event |
|
21 | { |
||
22 | 1 | return $this->event; |
|
23 | } |
||
24 | |||
25 | 1 | public function getException(): \Throwable |
|
26 | { |
||
27 | 1 | return $this->exception; |
|
28 | } |
||
29 | |||
30 | 1 | public function getListenerClass(): string |
|
31 | { |
||
32 | 1 | return $this->listenerClass; |
|
33 | } |
||
34 | |||
35 | 1 | public function getErrorContract(): ?ErrorContract |
|
38 | } |
||
39 | } |
||
40 |