You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: clients/algoliasearch-client-php/lib/Api/SearchClient.php
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -3095,7 +3095,7 @@ public function replaceAllObjects($indexName, $objects, $batchSize = 1000, $scop
3095
3095
* @param string $indexName the `indexName` to replace `objects` in
3096
3096
* @param array $objects the array of `objects` to store in the given Algolia `indexName`
3097
3097
* @param bool $waitForTasks Whether or not we should wait until every `batch` tasks has been processed, this operation may slow the total execution time of this method but is more reliable
3098
-
* @param array $batchSize The size of the chunk of `objects`. The number of `batch` calls will be equal to `length(objects) / batchSize`. Defaults to 1000.
3098
+
* @param int $batchSize The size of the chunk of `objects`. The number of `batch` calls will be equal to `length(objects) / batchSize`. Defaults to 1000.
@@ -3112,7 +3112,7 @@ public function saveObjects($indexName, $objects, $waitForTasks = false, $batchS
3112
3112
* @param string $indexName the `indexName` to replace `objects` in
3113
3113
* @param array $objects the array of `objects` to store in the given Algolia `indexName`
3114
3114
* @param bool $waitForTasks Whether or not we should wait until every `batch` tasks has been processed, this operation may slow the total execution time of this method but is more reliable
3115
-
* @param array $batchSize The size of the chunk of `objects`. The number of `push` calls will be equal to `length(objects) / batchSize`. Defaults to 1000.
3115
+
* @param int $batchSize The size of the chunk of `objects`. The number of `push` calls will be equal to `length(objects) / batchSize`. Defaults to 1000.
@@ -3130,7 +3130,7 @@ public function saveObjectsWithTransformation($indexName, $objects, $waitForTask
3130
3130
* @param string $indexName the `indexName` to delete `objectIDs` from
3131
3131
* @param array $objectIDs the `objectIDs` to delete
3132
3132
* @param bool $waitForTasks Whether or not we should wait until every `batch` tasks has been processed, this operation may slow the total execution time of this method but is more reliable
3133
-
* @param array $batchSize The size of the chunk of `objects`. The number of `batch` calls will be equal to `length(objects) / batchSize`. Defaults to 1000.
3133
+
* @param int $batchSize The size of the chunk of `objects`. The number of `batch` calls will be equal to `length(objects) / batchSize`. Defaults to 1000.
@@ -3151,7 +3151,7 @@ public function deleteObjects($indexName, $objectIDs, $waitForTasks = false, $ba
3151
3151
* @param array $objects the array of `objects` to store in the given Algolia `indexName`
3152
3152
* @param bool $createIfNotExists To be provided if non-existing objects are passed, otherwise, the call will fail..
3153
3153
* @param bool $waitForTasks Whether or not we should wait until every `batch` tasks has been processed, this operation may slow the total execution time of this method but is more reliable
3154
-
* @param array $batchSize The size of the chunk of `objects`. The number of `batch` calls will be equal to `length(objects) / batchSize`. Defaults to 1000.
3154
+
* @param int $batchSize The size of the chunk of `objects`. The number of `batch` calls will be equal to `length(objects) / batchSize`. Defaults to 1000.
@@ -3169,7 +3169,7 @@ public function partialUpdateObjects($indexName, $objects, $createIfNotExists, $
3169
3169
* @param array $objects the array of `objects` to store in the given Algolia `indexName`
3170
3170
* @param bool $createIfNotExists To be provided if non-existing objects are passed, otherwise, the call will fail..
3171
3171
* @param bool $waitForTasks Whether or not we should wait until every `batch` tasks has been processed, this operation may slow the total execution time of this method but is more reliable
3172
-
* @param array $batchSize The size of the chunk of `objects`. The number of `push` calls will be equal to `length(objects) / batchSize`. Defaults to 1000.
3172
+
* @param int $batchSize The size of the chunk of `objects`. The number of `push` calls will be equal to `length(objects) / batchSize`. Defaults to 1000.
@@ -3188,7 +3188,7 @@ public function partialUpdateObjectsWithTransformation($indexName, $objects, $cr
3188
3188
* @param array $objects the array of `objects` to store in the given Algolia `indexName`
3189
3189
* @param array $action the `batch` `action` to perform on the given array of `objects`, defaults to `addObject`
3190
3190
* @param bool $waitForTasks whether or not we should wait until every `batch` tasks has been processed, this operation may slow the total execution time of this method but is more reliable
3191
-
* @param array $batchSize The size of the chunk of `objects`. The number of `batch` calls will be equal to `length(objects) / batchSize`. Defaults to 1000.
3191
+
* @param int $batchSize The size of the chunk of `objects`. The number of `batch` calls will be equal to `length(objects) / batchSize`. Defaults to 1000.
0 commit comments