File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -111,7 +111,7 @@ shown in the following code:
111111 $pipeline = [
112112 ['<stage>' => <parameters>],
113113 ['<stage>' => <parameters>],
114- ...
114+ // ...
115115 ];
116116
117117 $cursor = $collection->aggregate($pipeline);
@@ -196,7 +196,7 @@ Aggregation Builder
196196To create an aggregation pipeline by using the Aggregation Builder,
197197perform the following actions:
198198
199- 1. Create a ``Pipeline`` instance to store the pipeline stages.
199+ 1. Create a ``MongoDB\Builder\ Pipeline`` instance to store the pipeline stages.
200200
201201#. For each stage, call the a factory method from the
202202 ``Stage`` that shares the same name as your desired aggregation
@@ -219,7 +219,7 @@ aggregation pipelines:
219219 Stage::<factory method>(
220220 <stage specification>
221221 ),
222- ...
222+ // ...
223223 );
224224
225225 $cursor = $collection->aggregate($pipeline);
You can’t perform that action at this time.
0 commit comments