@@ -20,7 +20,7 @@ |
||
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); |
@@ -103,7 +103,7 @@ |
||
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 |