public function __toString()

in src/CloudEvent.php [140:154]


    public function __toString()
    {
        $output = implode("\n", [
            'CLOUDEVENT metadata:',
            "- id: $this->id",
            "- source: $this->source",
            "- specversion: $this->specversion",
            "- type: $this->type",
            "- datacontenttype: $this->datacontenttype",
            "- dataschema: $this->dataschema",
            "- subject: $this->subject",
            "- time: $this->time",
        ]);
        return $output;
    }