From 0858633b5a2a5614776143951abab76da407dde9 Mon Sep 17 00:00:00 2001 From: joedixon Date: Wed, 29 Nov 2023 15:50:56 +0000 Subject: [PATCH] Fix code styling --- src/Http/Server.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Http/Server.php b/src/Http/Server.php index 9b23ef5e..9990e206 100644 --- a/src/Http/Server.php +++ b/src/Http/Server.php @@ -17,7 +17,7 @@ class Server public function __construct(protected ServerInterface $socket, protected Router $router, protected ?LoopInterface $loop = null) { gc_disable(); - + $this->loop = $loop ?: Loop::get(); $this->loop->addPeriodicTimer(30, fn () => gc_collect_cycles());