]> git.mxchange.org Git - friendica.git/commitdiff
Fix code style
authorArt4 <art4@wlabs.de>
Mon, 3 Feb 2025 14:23:31 +0000 (14:23 +0000)
committerArt4 <art4@wlabs.de>
Mon, 3 Feb 2025 14:23:31 +0000 (14:23 +0000)
src/App/Router.php

index ac9bff206b72068b8cbfa9446b92b9e664ade0e0..da5acb18acaa7be3db476b1cdc77e2713faa339b 100644 (file)
@@ -112,16 +112,16 @@ class Router
         */
        public function __construct(array $server, string $baseRoutesFilepath, L10n $l10n, ICanCache $cache, ICanLock $lock, IManageConfigValues $config, Arguments $args, LoggerInterface $logger, AddonHelper $addonHelper, IHandleUserSessions $userSession, RouteCollector $routeCollector = null)
        {
-               $this->baseRoutesFilepath      = $baseRoutesFilepath;
-               $this->l10n                    = $l10n;
-               $this->cache                   = $cache;
-               $this->lock                    = $lock;
-               $this->args                    = $args;
-               $this->config                  = $config;
-               $this->server                  = $server;
-               $this->logger                  = $logger;
-               $this->addonHelper             = $addonHelper;
-               $this->isLocalUser             = !empty($userSession->getLocalUserId());
+               $this->baseRoutesFilepath = $baseRoutesFilepath;
+               $this->l10n               = $l10n;
+               $this->cache              = $cache;
+               $this->lock               = $lock;
+               $this->args               = $args;
+               $this->config             = $config;
+               $this->server             = $server;
+               $this->logger             = $logger;
+               $this->addonHelper        = $addonHelper;
+               $this->isLocalUser        = !empty($userSession->getLocalUserId());
 
                $this->routeCollector = $routeCollector ?? new RouteCollector(new Std(), new GroupCountBased());
 
@@ -276,14 +276,14 @@ class Router
                try {
                        // Check if the HTTP method is OPTIONS and return the special Options Module with the possible HTTP methods
                        if ($this->args->getMethod() === static::OPTIONS) {
-                               $this->moduleClass = Options::class;
+                               $this->moduleClass  = Options::class;
                                $this->parameters[] = ['AllowedMethods' => $dispatcher->getOptions($cmd)];
                        } else {
                                $routeInfo = $dispatcher->dispatch($this->args->getMethod(), $cmd);
                                if ($routeInfo[0] === Dispatcher::FOUND) {
-                                       $this->moduleClass = $routeInfo[1];
+                                       $this->moduleClass  = $routeInfo[1];
                                        $this->parameters[] = $routeInfo[2];
-                               } else if ($routeInfo[0] === Dispatcher::METHOD_NOT_ALLOWED) {
+                               } elseif ($routeInfo[0] === Dispatcher::METHOD_NOT_ALLOWED) {
                                        throw new HTTPException\MethodNotAllowedException($this->l10n->t('Method not allowed for this module. Allowed method(s): %s', implode(', ', $routeInfo[1])));
                                } else {
                                        throw new HTTPException\NotFoundException($this->l10n->t('Page not found.'));