@@ -130,7 +130,7 @@ |
||
130 | 130 | |
131 | 131 | $middleware = new SymfonyRouterMiddleware($this->router); |
132 | 132 | |
133 | - $dummyFn = static function ($request) : void { |
|
133 | + $dummyFn = static function($request) : void { |
|
134 | 134 | echo $request->getAttribute('_route'); |
135 | 135 | }; |
136 | 136 |
@@ -42,9 +42,9 @@ |
||
42 | 42 | $factory = $this->createMock(ResponseFactoryInterface::class); |
43 | 43 | |
44 | 44 | $factory |
45 | - ->expects(self::once()) |
|
46 | - ->method('createResponse') |
|
47 | - ->with(404); |
|
45 | + ->expects(self::once()) |
|
46 | + ->method('createResponse') |
|
47 | + ->with(404); |
|
48 | 48 | |
49 | 49 | $context = $this->createMock(RequestContext::class); |
50 | 50 |