| Total Complexity | 4 | 
| Total Lines | 37 | 
| Duplicated Lines | 0 % | 
| 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 | public function __construct(ServiceContainer $app) | ||
| 38 | } | ||
| 39 | |||
| 40 | /** | ||
| 41 | * @param mixed $payload | ||
| 42 | * | ||
| 43 | * @return FinallyResult|null | ||
| 44 | */ | ||
| 45 | public function handle($payload = null) | ||
| 63 |