Merge pull request #1164 from AlphaStream/fix-querybuilder-on-hhvm
[QueryBuilder] Remove unused method parameters to run on HHVM/PHP7
This commit is contained in:
commit
d361ed904e
@ -1026,7 +1026,7 @@ class QueryBuilder
|
||||
*
|
||||
* @see where()
|
||||
*/
|
||||
public function andWhere($where)
|
||||
public function andWhere()
|
||||
{
|
||||
$args = func_get_args();
|
||||
$where = $this->getDQLPart('where');
|
||||
@ -1059,7 +1059,7 @@ class QueryBuilder
|
||||
*
|
||||
* @see where()
|
||||
*/
|
||||
public function orWhere($where)
|
||||
public function orWhere()
|
||||
{
|
||||
$args = func_get_args();
|
||||
$where = $this->getDqlPart('where');
|
||||
|
Loading…
Reference in New Issue
Block a user