Skip to content

Commit 2aa0f1f

Browse files
committed
add setWhere method
1 parent 8991871 commit 2aa0f1f

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

src/Manipulation/AbstractBaseQuery.php

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -152,6 +152,18 @@ public function getWhere()
152152
return $this->where;
153153
}
154154

155+
/**
156+
* @param Where $where
157+
*
158+
* @return $this
159+
*/
160+
public function setWhere(Where $where)
161+
{
162+
$this->where = $where;
163+
164+
return $this;
165+
}
166+
155167
/**
156168
* @return Table
157169
*/

0 commit comments

Comments
 (0)