Skip to content

Commit c186417

Browse files
committed
Fix lint
1 parent e27e04e commit c186417

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/Contracts/TaskDetails/DocumentAdditionOrUpdateDetails.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
final class DocumentAdditionOrUpdateDetails implements TaskDetails
1616
{
1717
/**
18-
* @param non-negative-int $receivedDocuments Number of documents received.
18+
* @param non-negative-int $receivedDocuments number of documents received
1919
* @param non-negative-int|null $indexedDocuments Number of documents indexed. `null` while the task status is enqueued or processing.
2020
*/
2121
public function __construct(

src/Contracts/TaskDetails/DocumentDeletionDetails.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
final class DocumentDeletionDetails implements TaskDetails
1717
{
1818
/**
19-
* @param non-negative-int|null $providedIds Number of documents queued for deletion.
19+
* @param non-negative-int|null $providedIds number of documents queued for deletion
2020
* @param string|null $originalFilter The filter used to delete documents. Null if it was not specified.
2121
* @param int|null $deletedDocuments Number of documents deleted. `null` while the task status is enqueued or processing.
2222
*/

src/Contracts/TaskDetails/TaskDeletionDetails.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ final class TaskDeletionDetails implements TaskDetails
1818
/**
1919
* @param non-negative-int|null $matchedTasks The number of matched tasks. If the API key used for the request doesn’t have access to an index, tasks relating to that index will not be included in matchedTasks.
2020
* @param non-negative-int|null $deletedTasks The number of tasks successfully deleted. If the task deletion fails, this will be 0. null when the task status is enqueued or processing.
21-
* @param string|null $originalFilter The filter used in the delete task request.
21+
* @param string|null $originalFilter the filter used in the delete task request
2222
*/
2323
public function __construct(
2424
public readonly ?int $matchedTasks,

0 commit comments

Comments
 (0)