Total Complexity | 4 |
Total Lines | 37 |
Duplicated Lines | 0 % |
Coverage | 23.08% |
Changes | 0 |
1 | <?php |
||
23 | class EchoStrHandler implements EventHandlerInterface |
||
24 | { |
||
25 | /** |
||
26 | * @var ServiceContainer |
||
27 | */ |
||
28 | protected $app; |
||
29 | |||
30 | /** |
||
31 | * EchoStrHandler constructor. |
||
32 | * |
||
33 | * @param ServiceContainer $app |
||
34 | */ |
||
35 | 1 | public function __construct(ServiceContainer $app) |
|
38 | 1 | } |
|
39 | |||
40 | /** |
||
41 | * @param mixed $payload |
||
42 | * |
||
43 | * @return FinallyResult|null |
||
44 | */ |
||
45 | public function handle($payload = null) |
||
63 |