| Total Complexity | 3 |
| Total Lines | 28 |
| 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 $arguments = []; |
||
| 20 | |||
| 21 | public function __construct() |
||
| 24 | } |
||
| 25 | |||
| 26 | protected $data = ''; |
||
| 27 | |||
| 28 | /** |
||
| 29 | * @param $data |
||
| 30 | */ |
||
| 31 | public function addData($data) |
||
| 34 | } |
||
| 35 | |||
| 36 | /** |
||
| 37 | * @return string |
||
| 38 | */ |
||
| 39 | public function getData(): string |
||
| 44 |