Skip to content

Commit

Permalink
add setWhere method
Browse files Browse the repository at this point in the history
  • Loading branch information
aviggngyv committed Nov 5, 2019
1 parent 8991871 commit 2aa0f1f
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/Manipulation/AbstractBaseQuery.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
*/
Expand Down

0 comments on commit 2aa0f1f

Please sign in to comment.