From: Art4 Date: Fri, 20 Dec 2024 13:24:25 +0000 (+0000) Subject: refactor App X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=7a4542cd50a0d261af2dc44db804d974460a472a;p=friendica.git refactor App --- diff --git a/src/App.php b/src/App.php index bcce850270..521e310b8f 100644 --- a/src/App.php +++ b/src/App.php @@ -117,6 +117,10 @@ class App private function __construct(Dice $container) { $this->container = $container; + } + + public function processRequest(ServerRequestInterface $request, float $start_time): void + { $this->requestId = $this->container->create(Request::class)->getRequestId(); $this->auth = $this->container->create(Authentication::class); $this->config = $this->container->create(IManageConfigValues::class); @@ -128,10 +132,7 @@ class App $this->args = $this->container->create(Arguments::class); $this->session = $this->container->create(IHandleUserSessions::class); $this->appHelper = $this->container->create(AppHelper::class); - } - public function processRequest(ServerRequestInterface $request, float $start_time): void - { $this->load( $this->container->create(DbaDefinition::class), $this->container->create(ViewDefinition::class), @@ -155,7 +156,7 @@ class App /** * Load the whole app instance */ - public function load(DbaDefinition $dbaDefinition, ViewDefinition $viewDefinition) + private function load(DbaDefinition $dbaDefinition, ViewDefinition $viewDefinition) { if ($this->config->get('system', 'ini_max_execution_time') !== false) { set_time_limit((int)$this->config->get('system', 'ini_max_execution_time')); @@ -229,7 +230,7 @@ class App * @throws HTTPException\InternalServerErrorException * @throws \ImagickException */ - public function runFrontend( + private function runFrontend( Router $router, IManagePersonalConfigValues $pconfig, Authentication $auth,