style(PHP): satisfy code style linter

Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
This commit is contained in:
Arthur Schiwon
2024-10-15 13:42:06 +02:00
parent 8ecd70d9f2
commit 9b5a3b3443

View File

@ -2508,7 +2508,7 @@ class FeatureContext implements Context {
$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']);
}