From ad549cc5d6be8c496a901ea7148456c6f91bb96a Mon Sep 17 00:00:00 2001 From: Philipp Date: Thu, 2 Jan 2025 02:03:58 +0100 Subject: [PATCH] Execute `COMMAND=fix TARGET_BRANCH=develop bin/dev/fix-codestyle.sh` --- src/App.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/App.php b/src/App.php index 4e35ef5e70..a233e079f1 100644 --- a/src/App.php +++ b/src/App.php @@ -64,7 +64,7 @@ class App { const PLATFORM = 'Friendica'; const CODENAME = 'Interrupted Fern'; - const VERSION = '2025.02-dev'; + const VERSION = '2025.02-dev'; public static function fromDice(Dice $dice): self { @@ -537,7 +537,7 @@ class App $requeststring = ($serverVars['REQUEST_METHOD'] ?? '') . ' ' . ($serverVars['REQUEST_URI'] ?? '') . ' ' . ($serverVars['SERVER_PROTOCOL'] ?? ''); $this->logger->debug('Request received', ['address' => $serverVars['REMOTE_ADDR'] ?? '', 'request' => $requeststring, 'referer' => $serverVars['HTTP_REFERER'] ?? '', 'user-agent' => $serverVars['HTTP_USER_AGENT'] ?? '']); $request_start = microtime(true); - $request = $_REQUEST; + $request = $_REQUEST; $this->profiler->set($start_time, 'start'); $this->profiler->set(microtime(true), 'classinit'); @@ -701,7 +701,7 @@ class App $router = $this->container->create(Router::class); $moduleClass = $moduleClass ?? $router->getModuleClass(); - $parameters = $router->getParameters(); + $parameters = $router->getParameters(); $dice_profiler_threshold = $this->config->get('system', 'dice_profiler_threshold', 0);