Skip to content

Commit

Permalink
Update QueryBuilderInterface.php
Browse files Browse the repository at this point in the history
Added gt and lt functions to Query Builder interface
  • Loading branch information
jkwakman authored Jul 4, 2018
1 parent 6ee33da commit 6599d89
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion Query/QueryBuilderInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -161,17 +161,31 @@ public function getQuery();
*/
public function greaterThanEqual($value);

/**
* @param string $value
*
* @return QueryBuilderInterface
*/
public function greaterThan($value);

/**
* @param string $value
*
* @return QueryBuilderInterface
*/
public function lessThanEqual($value);

/**
* @param string $value
*
* @return QueryBuilderInterface
*/
public function lessThan($value);

/**
* @param float $value
*
* @return QueryBuilderInterface
*/
public function boost($value);
}
}

0 comments on commit 6599d89

Please sign in to comment.