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