Skip to content

Commit 2089be1

Browse files
committed
formatting
1 parent 42d670c commit 2089be1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Database/Adapter/SQL.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -431,7 +431,7 @@ public function createDocuments(string $collection, array $documents): array
431431

432432
$attributeKeys = array_unique($attributeKeys);
433433

434-
if ($hasSequence){
434+
if ($hasSequence) {
435435
$attributeKeys[] = '_id';
436436
}
437437

tests/e2e/Adapter/Scopes/DocumentTests.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -245,7 +245,7 @@ public function testCreateDocuments(): void
245245

246246
$results = [];
247247

248-
$count = $database->createDocuments($collection, $documents, 3, onNext: function ($doc) use (&$results) {
248+
$count = $database->createDocuments($collection, $documents, 3, onNext: function ($doc) use (&$results) {
249249
$results[] = $doc;
250250
});
251251

0 commit comments

Comments
 (0)