Skip to content

Commit

Permalink
QA: Consistently use trailing commas
Browse files Browse the repository at this point in the history
  • Loading branch information
thekid committed Dec 30, 2023
1 parent c1ff59b commit 261421e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/php/com/mongodb/Collection.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ public function upsert($query, $arg, Options... $options): Update {
'q' => is_array($query) ? $query : ['_id' => $query],
'u' => $arg,
'upsert' => true,
'multi' => false
'multi' => false,
]],
'$db' => $this->database,
]);
Expand Down

0 comments on commit 261421e

Please sign in to comment.