From 9febb0371edf0efa1b23f398f5108dd75af07efe Mon Sep 17 00:00:00 2001 From: roxblnfk Date: Tue, 7 May 2024 15:41:08 +0000 Subject: [PATCH] Apply php-cs-fixer changes --- src/Application.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/Application.php b/src/Application.php index 63f35027..258037bc 100644 --- a/src/Application.php +++ b/src/Application.php @@ -216,8 +216,7 @@ public function configureFrontend(): void ]); $this->processors[] = $inspector; $this->processors[] = $wsSender; - $config = $this->container->get( FrontendConfig::class); + $config = $this->container->get(FrontendConfig::class); $this->prepareServerFiber(new SocketServer(port: $config->port), $inspector, $this->logger); } } -