Passed
Pull Request — master (#2)
by Donald
01:26
created
fixtures/bin/writeFileDelayed.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 if (count($argv) != 4) {
6 6
     echo "Usage: writeFileDelayed.php FILE DELAY CONTENT\n";
Please login to merge, or discard this patch.
fixtures/features/bootstrap/FeatureContext.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 use Behat\Behat\Context\Context;
6 6
 use Symfony\Component\Filesystem\Filesystem;
Please login to merge, or discard this patch.
src/Chekote/BehatRetryExtension/Tester/RuntimeStepTester.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -168,7 +168,7 @@
 block discarded – undo
168 168
         // will only prevent that process from continuing, and the test will either pass immediately,
169 169
         // or not at all. We need to find out how to check what Driver we're using...
170 170
         return $this->lastKeyword == 'Then' && self::$timeout
171
-            ? $this->spin(function () use ($call) { return $this->callCenter->makeCall($call); })
171
+            ? $this->spin(function() use ($call) { return $this->callCenter->makeCall($call); })
172 172
             : $this->callCenter->makeCall($call);
173 173
     }
174 174
 
Please login to merge, or discard this patch.