We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 882fa11 commit b77c255Copy full SHA for b77c255
src/Operation/Find.php
@@ -348,12 +348,6 @@ private function createQueryOptions(): array
348
}
349
350
351
- if (! empty($this->options['modifiers'])) {
352
- /** @psalm-var array|object */
353
- $modifiers = $this->options['modifiers'];
354
- $options['modifiers'] = is_object($modifiers) ? document_to_array($modifiers) : $modifiers;
355
- }
356
-
357
// Ensure no cursor is left behind when limit == batchSize by increasing batchSize
358
if (isset($options['limit'], $options['batchSize']) && $options['limit'] === $options['batchSize']) {
359
assert(is_integer($options['batchSize']));
0 commit comments