summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2023-08-21 13:33:30 +0200
committerJoas Schilling <coding@schilljs.com>2023-08-21 13:33:30 +0200
commita707aa7b5a8aa0dd34511374f4e517000490d8bb (patch)
treec11f5702ecc588adebcfc8632d5d3a6241c0aeb5 /tests
parenta115880b23f5d01b15d1d49bf1fb86678c77487b (diff)
fix(CS): Fix coding style
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/integration/features/bootstrap/FeatureContext.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/integration/features/bootstrap/FeatureContext.php b/tests/integration/features/bootstrap/FeatureContext.php
index d3b08e2ec..8931d7fdf 100644
--- a/tests/integration/features/bootstrap/FeatureContext.php
+++ b/tests/integration/features/bootstrap/FeatureContext.php
@@ -3530,7 +3530,7 @@ class FeatureContext implements Context, SnippetAcceptingContext {
$features = '';
if ($body) {
$features = array_map(static fn ($map) => $map['feature'], $body->getColumnsHash());
- $features = ' -f ' . implode (' -f ', $features);
+ $features = ' -f ' . implode(' -f ', $features);
}
$this->invokingTheCommand('talk:bot:state ' . self::$botNameToId[$botName] . ' ' . $state . $features);