Passed
Branch 0.0.x (418e55)
by Koldo
07:37
created
Category
src/ReactApplication.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -88,7 +88,7 @@
 block discarded – undo
88 88
     {
89 89
         return new PromiseResponse(resolve($request)
90 90
             ->then(
91
-                fn (ServerRequestInterface $request): ResponseInterface => $this->pipeline->handle($request)
91
+                fn(ServerRequestInterface $request): ResponseInterface => $this->pipeline->handle($request)
92 92
             ));
93 93
     }
94 94
 
Please login to merge, or discard this patch.
src/MiddlewarePipeline.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -47,7 +47,7 @@  discard block
 block discarded – undo
47 47
         $this->setCurrentPipeline($requestId);
48 48
 
49 49
         return new PromiseResponse(resolve($request)->then(
50
-            function (ServerRequestInterface $request) {
50
+            function(ServerRequestInterface $request) {
51 51
                 /** @var string $requestId */
52 52
                 $requestId = $request->getAttribute('request_id');
53 53
                 try {
@@ -78,7 +78,7 @@  discard block
 block discarded – undo
78 78
         $this->setCurrentPipeline($requestId);
79 79
 
80 80
         return new PromiseResponse(resolve($request)
81
-            ->then(function (ServerRequestInterface $request) use ($handler) {
81
+            ->then(function(ServerRequestInterface $request) use ($handler) {
82 82
                 /** @var string $requestId */
83 83
                 $requestId = $request->getAttribute('request_id');
84 84
                 try {
Please login to merge, or discard this patch.