Commit 40971158 authored by Jeremy Mikola's avatar Jeremy Mikola

Merge pull request #474

parents 27fe3fcd 277127fd
...@@ -33,7 +33,6 @@ use MongoDB\Exception\UnsupportedException; ...@@ -33,7 +33,6 @@ use MongoDB\Exception\UnsupportedException;
class FindOne implements Executable class FindOne implements Executable
{ {
private $find; private $find;
private $options;
/** /**
* Constructs a find command for finding a single document. * Constructs a find command for finding a single document.
...@@ -105,8 +104,6 @@ class FindOne implements Executable ...@@ -105,8 +104,6 @@ class FindOne implements Executable
$filter, $filter,
['limit' => 1] + $options ['limit' => 1] + $options
); );
$this->options = $options;
} }
/** /**
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment