@@ -157,6 +157,7 @@ discard block |
||
157 | 157 | |
158 | 158 | /** |
159 | 159 | * @Given /^a Behat configuration containing(?: "([^"]+)"|:)$/ |
160 | + * @param string $content |
|
160 | 161 | */ |
161 | 162 | public function thereIsConfiguration($content): void |
162 | 163 | { |
@@ -177,6 +178,7 @@ discard block |
||
177 | 178 | |
178 | 179 | /** |
179 | 180 | * @Given /^a (?:.+ |)file "([^"]+)" containing(?: "([^"]+)"|:)$/ |
181 | + * @param string $file |
|
180 | 182 | */ |
181 | 183 | public function thereIsFile($file, $content): string |
182 | 184 | { |
@@ -132,7 +132,7 @@ |
||
132 | 132 | ), $suite->getName()); |
133 | 133 | } |
134 | 134 | |
135 | - $contexts = array_filter($contexts, function ($context) use ($contextsToRemove): bool { |
|
135 | + $contexts = array_filter($contexts, function($context) use ($contextsToRemove): bool { |
|
136 | 136 | return !in_array($this->normalizeContext($context), $contextsToRemove, true); |
137 | 137 | }); |
138 | 138 |