Total Complexity | 4 |
Total Lines | 29 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
15 | class ExceptionReview implements Layered |
||
16 | { |
||
17 | /** |
||
18 | * @param mixed $message |
||
19 | * @param Context $ctx |
||
20 | * @return mixed |
||
21 | */ |
||
22 | public function inbound($message, Context $ctx) |
||
23 | { |
||
24 | return $message; |
||
25 | } |
||
26 | |||
27 | /** |
||
28 | * @param mixed $message |
||
29 | * @param Context $ctx |
||
30 | * @return mixed |
||
31 | */ |
||
32 | public function outbound($message, Context $ctx) |
||
35 | } |
||
36 | |||
37 | /** |
||
38 | * @param Throwable $e |
||
39 | * @param Context $ctx |
||
40 | */ |
||
41 | public function exception(Throwable $e, Context $ctx) |
||
46 |