Completed
Pull Request — master (#9)
by Antonio del
01:58
created
tests/SymfonyRouterMiddlewareTest.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -130,7 +130,7 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -42,9 +42,9 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.