Skip to content

Commit

Permalink
Run lint:fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Strift committed Dec 4, 2024
1 parent 0ab1764 commit 2e409e3
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 5 deletions.
4 changes: 0 additions & 4 deletions src/Contracts/TasksQuery.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,6 @@ class TasksQuery
*/
private ?array $canceledBy = null;


/**
* @var int|null
*/
private ?int $batchUid = null;

/**
Expand Down
2 changes: 1 addition & 1 deletion tests/Endpoints/TasksTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ public function testCancelTasksWithFilter(): void
self::assertSame('taskCancelation', $promise['type']);
$response = $this->client->waitForTask($promise['taskUid']);

self::assertSame('?' . $query, $response['details']['originalFilter']);
self::assertSame('?'.$query, $response['details']['originalFilter']);
self::assertSame('taskCancelation', $response['type']);
self::assertSame('succeeded', $response['status']);
}
Expand Down

0 comments on commit 2e409e3

Please sign in to comment.