Commit 79e12213 authored by Jeremy Mikola's avatar Jeremy Mikola

Merge pull request #289

parents af6f6788 319f8a1b
...@@ -214,10 +214,6 @@ class Find implements Executable ...@@ -214,10 +214,6 @@ class Find implements Executable
{ {
$options = []; $options = [];
if ( ! empty($this->options['allowPartialResults'])) {
$options['partial'] = true;
}
if (isset($this->options['cursorType'])) { if (isset($this->options['cursorType'])) {
if ($this->options['cursorType'] === self::TAILABLE) { if ($this->options['cursorType'] === self::TAILABLE) {
$options['tailable'] = true; $options['tailable'] = true;
...@@ -228,7 +224,7 @@ class Find implements Executable ...@@ -228,7 +224,7 @@ class Find implements Executable
} }
} }
foreach (['batchSize', 'limit', 'skip', 'sort', 'noCursorTimeout', 'oplogReplay', 'projection', 'readConcern'] as $option) { foreach (['allowPartialResults', 'batchSize', 'comment', 'limit', 'maxTimeMS', 'noCursorTimeout', 'oplogReplay', 'projection', 'readConcern', 'skip', 'sort'] as $option) {
if (isset($this->options[$option])) { if (isset($this->options[$option])) {
$options[$option] = $this->options[$option]; $options[$option] = $this->options[$option];
} }
...@@ -240,14 +236,6 @@ class Find implements Executable ...@@ -240,14 +236,6 @@ class Find implements Executable
$modifiers = empty($this->options['modifiers']) ? [] : (array) $this->options['modifiers']; $modifiers = empty($this->options['modifiers']) ? [] : (array) $this->options['modifiers'];
if (isset($this->options['comment'])) {
$modifiers['$comment'] = $this->options['comment'];
}
if (isset($this->options['maxTimeMS'])) {
$modifiers['$maxTimeMS'] = $this->options['maxTimeMS'];
}
if ( ! empty($modifiers)) { if ( ! empty($modifiers)) {
$options['modifiers'] = $modifiers; $options['modifiers'] = $modifiers;
} }
......
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