Completed
Pull Request — master (#96)
by Kamil
08:00
created
tests/Behat/Context/TestContext.php 1 patch
Doc Comments   +2 added lines patch added patch discarded remove patch
@@ -157,6 +157,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
     {
Please login to merge, or discard this patch.
src/Context/Environment/Handler/ContextServiceEnvironmentHandler.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -132,7 +132,7 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.