params); } /** * Clone an existing query for a subsequent modifying and building. */ public function clone(Delete $query) : self { $this->cloneInternal($query); return $this; } public function set(array $set) : self { $this->params['set'] = $set; return $this; } /** * Apply LIMIT. */ public function limit(?int $limit = null) : self { $this->params['limit'] = $limit; return $this; } }