Skip to content

Commit

Permalink
Merge pull request #112 from hunteryun/master
Browse files Browse the repository at this point in the history
add setWhere method
  • Loading branch information
nilportugues authored Apr 7, 2020
2 parents b00877e + 2aa0f1f commit 889e9e7
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 889e9e7

Please sign in to comment.