@@ -52,12 +52,11 @@ |
||
| 52 | 52 | new MiddlewareHandler( |
| 53 | 53 | $middleware, |
| 54 | 54 | $handler |
| 55 | - ) : |
|
| 56 | - new RequestHandlerMiddleware( |
|
| 55 | + ) : new RequestHandlerMiddleware( |
|
| 57 | 56 | $handler |
| 58 | 57 | ); |
| 59 | 58 | |
| 60 | - $this->client = new PsrHttpClient( |
|
| 59 | + $this->client = new PsrHttpClient( |
|
| 61 | 60 | $this->handler, |
| 62 | 61 | $serverRequestFactory |
| 63 | 62 | ); |
@@ -54,7 +54,7 @@ |
||
| 54 | 54 | $this->middleware = new RequestHandlerMiddleware($this->requestHandler->reveal()); |
| 55 | 55 | |
| 56 | 56 | $testClass = $this; |
| 57 | - $callback = function () use ($testClass) { |
|
| 57 | + $callback = function() use ($testClass) { |
|
| 58 | 58 | $testClass->execution[] = \spl_object_hash($this); |
| 59 | 59 | |
| 60 | 60 | return $testClass->response->reveal(); |
@@ -37,7 +37,7 @@ discard block |
||
| 37 | 37 | |
| 38 | 38 | public function testInvalidCallbackThrowsTypeError(): void |
| 39 | 39 | { |
| 40 | - $handler = new CallableHandler(function (): void { |
|
| 40 | + $handler = new CallableHandler(function(): void { |
|
| 41 | 41 | }); |
| 42 | 42 | $this->expectException(\TypeError::class); |
| 43 | 43 | $handler->handle($this->serverRequest->reveal()); |
@@ -46,7 +46,7 @@ discard block |
||
| 46 | 46 | public function testHandleReturnsCallbackResponse(): void |
| 47 | 47 | { |
| 48 | 48 | $response = $this->response; |
| 49 | - $callback = function () use ($response) { |
|
| 49 | + $callback = function() use ($response) { |
|
| 50 | 50 | return $response->reveal(); |
| 51 | 51 | }; |
| 52 | 52 | $handler = new CallableHandler($callback); |