Skip to content

Commit c034dfd

Browse files
MsNataligithub-actions[bot]
authored andcommitted
Fix styling
1 parent ab90810 commit c034dfd

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

src/Aggregating/AggregationsQuery.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ public function get(?callable $async = null): Collection|FutureArray
4747
return $promise;
4848
} else {
4949
$response = $this->execute(async: false);
50+
5051
return $this->responseToResults($response);
5152
}
5253

src/ElasticClient.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ public static function fromConfig(array $config): static
148148
protected function paramsAsync(array $params): array
149149
{
150150
return array_merge_recursive($params, [
151-
'client' => ['future' => 'lazy']
151+
'client' => ['future' => 'lazy'],
152152
]);
153153
}
154154
}

src/Search/SearchQuery.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,7 @@ public function paginate(int $size, int $offset = 0, ?callable $async = null): P
7171
return $promise;
7272
} else {
7373
$response = $this->execute(size: $size, from: $offset, totals: true, async: false);
74+
7475
return $this->responseToPage($size, $offset, $response);
7576
}
7677
}

0 commit comments

Comments
 (0)