diff --git a/src/Manipulation/AbstractBaseQuery.php b/src/Manipulation/AbstractBaseQuery.php index 940bf3c..a9845a2 100644 --- a/src/Manipulation/AbstractBaseQuery.php +++ b/src/Manipulation/AbstractBaseQuery.php @@ -152,6 +152,18 @@ public function getWhere() return $this->where; } + /** + * @param Where $where + * + * @return $this + */ + public function setWhere(Where $where) + { + $this->where = $where; + + return $this; + } + /** * @return Table */