$content */ public function __construct( protected array $content, protected EventType $type, ) {} /** * @return array */ public function getContent(): array { return $this->content; } public function getType(): EventType { return $this->type; } }