Total Complexity | 3 |
Total Lines | 26 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 1 | Features | 0 |
1 | <?php |
||
14 | class Event implements EventInterface, StoppableEventInterface |
||
15 | { |
||
16 | use EventTrait; |
||
17 | use Dispatchable; |
||
18 | |||
19 | public function __construct() |
||
22 | } |
||
23 | |||
24 | protected $data = ''; |
||
25 | |||
26 | /** |
||
27 | * @param $data |
||
28 | */ |
||
29 | public function addData($data) |
||
32 | } |
||
33 | |||
34 | /** |
||
35 | * @return string |
||
36 | */ |
||
37 | public function getData(): string |
||
42 |