@@ -33,7 +33,7 @@ discard block |
||
33 | 33 | |
34 | 34 | public function testInvalidCallbackThrowsTypeError() |
35 | 35 | { |
36 | - $handler = new CallableHandler(function(){}); |
|
36 | + $handler = new CallableHandler(function() {}); |
|
37 | 37 | $this->expectException(TypeError::class); |
38 | 38 | $handler->handle($this->serverRequest->reveal()); |
39 | 39 | } |
@@ -41,7 +41,7 @@ discard block |
||
41 | 41 | public function testHandleReturnsCallbackResponse() |
42 | 42 | { |
43 | 43 | $response = $this->response; |
44 | - $callback = function () use ($response) { |
|
44 | + $callback = function() use ($response) { |
|
45 | 45 | return $response->reveal(); |
46 | 46 | }; |
47 | 47 | $handler = new CallableHandler($callback); |