Skip to content
This repository has been archived by the owner on Nov 11, 2020. It is now read-only.

Commit

Permalink
Remove unused $options argument in Expr::equals()
Browse files Browse the repository at this point in the history
  • Loading branch information
jmikola committed Apr 23, 2013
1 parent deeb088 commit e92f0f2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Doctrine/MongoDB/Query/Expr.php
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ public function field($field)
return $this;
}

public function equals($value, array $options = array())
public function equals($value)
{
if ($this->currentField) {
$this->query[$this->currentField] = $value;
Expand Down

0 comments on commit e92f0f2

Please sign in to comment.