diff --git a/src/Builder.php b/src/Builder.php index 1182424..21c66fc 100644 --- a/src/Builder.php +++ b/src/Builder.php @@ -79,4 +79,14 @@ public function delete(): Statement return $this->client->write($sql); } + /** + * Makes clean instance of builder. + * + * @return self + */ + public function newQuery(): self + { + return new static($this->client); + } + }