From e92f0f26661d50b0dd1172f587f1c38bd6d38bfc Mon Sep 17 00:00:00 2001 From: Jeremy Mikola Date: Tue, 23 Apr 2013 15:20:08 -0400 Subject: [PATCH] Remove unused $options argument in Expr::equals() --- lib/Doctrine/MongoDB/Query/Expr.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Doctrine/MongoDB/Query/Expr.php b/lib/Doctrine/MongoDB/Query/Expr.php index ab6beaf1..d98bb99f 100644 --- a/lib/Doctrine/MongoDB/Query/Expr.php +++ b/lib/Doctrine/MongoDB/Query/Expr.php @@ -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;