Total Complexity | 2 |
Total Lines | 14 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
3 | class EventListener1 extends \Suricate\Event\EventListener |
||
4 | { |
||
5 | protected $payload; |
||
6 | protected string $eventType; |
||
7 | |||
8 | public function __construct($payload, string $eventType) |
||
9 | { |
||
10 | $this->payload = $payload; |
||
11 | $this->eventType = $eventType; |
||
12 | } |
||
13 | |||
14 | public function handle() |
||
17 | } |
||
18 | } |
||
19 |