Skip to content

Commit

Permalink
Fixed inCond
Browse files Browse the repository at this point in the history
  • Loading branch information
SilverFire committed May 22, 2015
1 parent 7ffd179 commit 672c3ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion QueryBuilder.php
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ private function buildInCondition($operator, $operands)
{
$key = array_shift($operands);

return [$key.'_in ' => join(',', reset($operands))];
return [$key.'_in' => implode(',', array_shift($operands))];
}

private function buildEqCondition ($operator, $operands) {
Expand Down

0 comments on commit 672c3ca

Please sign in to comment.