From 9b5a3b344320040f7a2f9ef10f05c4dc5f63b415 Mon Sep 17 00:00:00 2001 From: Arthur Schiwon Date: Tue, 15 Oct 2024 13:42:06 +0200 Subject: [PATCH] style(PHP): satisfy code style linter Signed-off-by: Arthur Schiwon --- tests/integration/features/bootstrap/FeatureContext.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration/features/bootstrap/FeatureContext.php b/tests/integration/features/bootstrap/FeatureContext.php index f63c78529..fe0843d78 100644 --- a/tests/integration/features/bootstrap/FeatureContext.php +++ b/tests/integration/features/bootstrap/FeatureContext.php @@ -2508,7 +2508,7 @@ public function userDeletesRow(string $user, string $rowAlias): void { $row = $this->collectionManager->getByAlias('row', $rowAlias); if ($this->activeNode['type'] === 'view') { - $endpoint = sprintf('/apps/tables/api/1/views/%s/rows/%s',$this->activeNode['id'], $row['id']); + $endpoint = sprintf('/apps/tables/api/1/views/%s/rows/%s', $this->activeNode['id'], $row['id']); } else { $endpoint = sprintf('/apps/tables/api/1/rows/%s', $row['id']); }