Passed
Push — master ( 6958d6...dd7246 )
by Ronaldo
01:44
created
src/Scenario/Dispatcher/Dispatcher.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@
 block discarded – undo
20 20
      */
21 21
     public function dispatch(Scenario $scenario, WebDriver $driver): array
22 22
     {
23
-        $start  = microtime(true);
23
+        $start = microtime(true);
24 24
 
25 25
         call_user_func($scenario->getCallback(), $scenario->pipeline());
26 26
         $tasks = $scenario->pipeline()->process($driver);
Please login to merge, or discard this patch.
src/Scenario/ScenarioRepository.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -103,7 +103,7 @@
 block discarded – undo
103 103
     private function validateKey(string $key): void
104 104
     {
105 105
         if (preg_match(static::KEY_REGEX, $key)) {
106
-            throw new InvalidArgumentException('Invalid character in scenario name: "'.$key.'"', 400);
106
+            throw new InvalidArgumentException('Invalid character in scenario name: "' . $key . '"', 400);
107 107
         }
108 108
     }
109 109
 
Please login to merge, or discard this patch.