1
0
mirror of synced 2025-01-09 18:47:10 +03:00

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:
Marco Pivetta 2014-10-19 10:56:32 +02:00
commit d361ed904e

View File

@ -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');