File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -198,11 +198,11 @@ private function createQuery()
198198 $ options ['partial ' ] = true ;
199199 }
200200
201- if (isset ($ options ['cursorType ' ])) {
202- if ($ options ['cursorType ' ] === self ::TAILABLE ) {
201+ if (isset ($ this -> options ['cursorType ' ])) {
202+ if ($ this -> options ['cursorType ' ] === self ::TAILABLE ) {
203203 $ options ['tailable ' ] = true ;
204204 }
205- if ($ options ['cursorType ' ] === self ::TAILABLE_AWAIT ) {
205+ if ($ this -> options ['cursorType ' ] === self ::TAILABLE_AWAIT ) {
206206 $ options ['tailable ' ] = true ;
207207 $ options ['awaitData ' ] = true ;
208208 }
@@ -216,11 +216,11 @@ private function createQuery()
216216
217217 $ modifiers = empty ($ this ->options ['modifiers ' ]) ? [] : (array ) $ this ->options ['modifiers ' ];
218218
219- if (isset ($ options ['comment ' ])) {
219+ if (isset ($ this -> options ['comment ' ])) {
220220 $ modifiers ['$comment ' ] = $ options ['comment ' ];
221221 }
222222
223- if (isset ($ options ['maxTimeMS ' ])) {
223+ if (isset ($ this -> options ['maxTimeMS ' ])) {
224224 $ modifiers ['$maxTimeMS ' ] = $ options ['maxTimeMS ' ];
225225 }
226226
You can’t perform that action at this time.
0 commit comments