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