@@ -168,7 +168,7 @@ |
||
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 | if ($this->lastKeyword == 'Then' && self::$timeout) { |
171 | - return $this->spin(function () use ($call) { |
|
171 | + return $this->spin(function() use ($call) { |
|
172 | 172 | return $this->callCenter->makeCall($call); |
173 | 173 | }); |
174 | 174 | } else { |
@@ -117,7 +117,7 @@ |
||
117 | 117 | return null; |
118 | 118 | } |
119 | 119 | |
120 | - if(filter_var($value, FILTER_VALIDATE_INT) === false) { |
|
120 | + if (filter_var($value, FILTER_VALIDATE_INT) === false) { |
|
121 | 121 | echo 'Warning: Environment variable ' . self::CONFIG_ENV_TIMEOUT . |
122 | 122 | ' should be an integer, got "' . $value . '"' . PHP_EOL; |
123 | 123 |