type = $type; $this->params = $params; $this->start = $start; $this->end = $end; } } public static function fromArray($arr): CQObject { return new CQObject($arr["type"], $arr["params"] ?? [], $arr["start"], $arr["end"]); } }