]> git.mxchange.org Git - friendica.git/commitdiff
Execute `COMMAND=fix TARGET_BRANCH=develop bin/dev/fix-codestyle.sh`
authorPhilipp <admin@philipp.info>
Thu, 2 Jan 2025 01:03:58 +0000 (02:03 +0100)
committerPhilipp <admin@philipp.info>
Thu, 2 Jan 2025 01:03:58 +0000 (02:03 +0100)
src/App.php

index 4e35ef5e70cd4e09cd857d08efa8235dc83f523d..a233e079f1f820fbeda5f8395a96d1493b6af3f4 100644 (file)
@@ -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);