$content */ public function __construct( array $content, protected string $sender, EventType $type, ) { parent::__construct($content, $type); } public function jsonSerialize(): array { return [ "content" => $this->content, "sender" => $this->sender, "type" => $this->type, ]; } public function getSender(): string { return $this->sender; } }