File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ function toJSON(object $document): string
2020$ changeStream = $ collection ->watch ();
2121
2222for ($ changeStream ->rewind (); true ; $ changeStream ->next ()) {
23- if ( ! $ changeStream ->valid ()) {
23+ if (! $ changeStream ->valid ()) {
2424 continue ;
2525 }
2626 $ event = $ changeStream ->current ();
@@ -46,7 +46,7 @@ function toJSON(object $document): string
4646$ changeStream = $ collection ->watch ($ pipeline );
4747
4848for ($ changeStream ->rewind (); true ; $ changeStream ->next ()) {
49- if ( ! $ changeStream ->valid ()) {
49+ if (! $ changeStream ->valid ()) {
5050 continue ;
5151 }
5252 $ event = $ changeStream ->current ();
@@ -64,7 +64,7 @@ function toJSON(object $document): string
6464$ changeStream = $ collection ->watch ([], $ options );
6565
6666for ($ changeStream ->rewind (); true ; $ changeStream ->next ()) {
67- if ( ! $ changeStream ->valid ()) {
67+ if (! $ changeStream ->valid ()) {
6868 continue ;
6969 }
7070 $ event = $ changeStream ->current ();
Original file line number Diff line number Diff line change 5353$ changeStream = $ collection ->watch ();
5454
5555for ($ changeStream ->rewind (); true ; $ changeStream ->next ()) {
56- if ( ! $ changeStream ->valid ()) {
56+ if (! $ changeStream ->valid ()) {
5757 continue ;
5858 }
5959 $ event = $ changeStream ->current ();
You can’t perform that action at this time.
0 commit comments