Passed
Push — master ( fb750b...6eebbc )
by Shiyu
02:41
created
src/Components/Serving.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -42,7 +42,7 @@
 block discarded – undo
42 42
         Server::layers()->prepend(null, DI::object(ExceptionReview::class));
43 43
 
44 44
         // starting wait
45
-        $app->starting()->add(static function () use ($options) {
45
+        $app->starting()->add(static function() use ($options) {
46 46
             // add traffic monitor layer
47 47
             DI::has(Daemon::class) && Server::layers()->prepend(
48 48
                 IngressWrapper::class,
Please login to merge, or discard this patch.
src/Handlers/IngressWrapper.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -70,7 +70,7 @@
 block discarded – undo
70 70
 
71 71
         $this->parsedBody($request);
72 72
 
73
-        return race(async(function (ServerRequest $sr) {
73
+        return race(async(function(ServerRequest $sr) {
74 74
             return $this->dispatcher->invoke($sr);
75 75
         }, $ctx, $request), timeout($this->options->ttExec));
76 76
     }
Please login to merge, or discard this patch.