@@ -42,7 +42,7 @@ |
||
| 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, |
@@ -70,7 +70,7 @@ |
||
| 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 | } |