@@ -197,7 +197,7 @@ |
||
| 197 | 197 | { |
| 198 | 198 | $exception = new ResourceNotReadableException("Failed reading '$uri'"); |
| 199 | 199 | |
| 200 | - set_error_handler(function () use ($exception) { |
|
| 200 | + set_error_handler(function() use ($exception) { |
|
| 201 | 201 | throw $exception; |
| 202 | 202 | }); |
| 203 | 203 | $response = file_get_contents($uri); |
@@ -203,7 +203,7 @@ |
||
| 203 | 203 | $logger |
| 204 | 204 | ->expects($this->once()) |
| 205 | 205 | ->method('log') |
| 206 | - ->with($this->anything(), $this->callback(function ($message) use (&$logref) { |
|
| 206 | + ->with($this->anything(), $this->callback(function($message) use (&$logref) { |
|
| 207 | 207 | $matches = []; |
| 208 | 208 | if (preg_match('/logref ([a-z0-9]*)/', $message, $matches)) { |
| 209 | 209 | $logref = $matches[1]; |