Skip to content

Commit a53a6bd

Browse files
committed
reformat comments
1 parent 29553f9 commit a53a6bd

File tree

1 file changed

+13
-11
lines changed

1 file changed

+13
-11
lines changed

source/includes/builders.php

+13-11
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@
1616
// end-db-coll
1717

1818
// start-find
19-
/* Creates a query filter by using builders and
20-
retrieves matching documents */
19+
// Creates a query filter by using builders and
20+
// retrieves matching documents
2121
$docs = $collection->find(Query::query(
2222
feature_type: Query::eq('Wrecks - Visible'),
2323
coordinates: Query::near(
@@ -29,50 +29,52 @@
2929
)
3030
));
3131

32-
/* Prints matching documents */
32+
// Prints matching documents
3333
foreach ($docs as $doc) {
3434
echo json_encode($doc), PHP_EOL;
3535
}
3636
// end-find
3737

3838
// start-deleteone
39-
/* Creates a query filter by using builders
40-
and deletes the first matching document */
39+
// Creates a query filter by using builders
40+
// and deletes the first matching document
4141
$result = $collection->deleteOne(Query::query(
4242
feature_type: Query::regex('nondangerous$', '')
4343
));
4444

45+
// Prints number of deleted documents
4546
echo 'Deleted documents: ', $result->getDeletedCount(), PHP_EOL;
4647
// end-deleteone
4748

4849
// start-updateone
49-
/* Creates a query filter and an update document by
50-
using builders and updates the first matching document */
50+
// Creates a query filter and an update document by
51+
// using builders and updates the first matching document
5152
$result = $collection->updateOne(
5253
Query::query(watlev: Query::eq('partly submerged at high water')),
5354
new Pipeline(
5455
Stage::set(year: 1870),
5556
),
5657
);
5758

59+
// Prints number of updated documents
5860
echo 'Updated documents: ', $result->getModifiedCount(), PHP_EOL;
5961
// end-updateone
6062

6163
// start-cs
62-
/* Creates a pipeline to filter for update operations and returns
63-
only specific fields */
64+
// Creates a pipeline to filter for update operations and return
65+
// only specific fields
6466
$pipeline = [
6567
Stage::match(operationType: Query::eq('update')),
6668
Stage::project(operationType: 1, ns: 1, fullDocument: 1),
6769
];
6870

69-
/* Opens the change stream */
71+
// Opens the change stream
7072
$changeStream = $collection->watch(
7173
$pipeline,
7274
['fullDocument' => MongoDB\Operation\Watch::FULL_DOCUMENT_UPDATE_LOOKUP]
7375
);
7476

75-
/* Prints change events based on the pipeline specifications */
77+
// Prints change events based on the pipeline specifications
7678
for ($changeStream->rewind(); true; $changeStream->next()) {
7779
if (! $changeStream->valid()) {
7880
continue;

0 commit comments

Comments
 (0)