]> git.mxchange.org Git - friendica.git/commitdiff
Rename back App::load()
authorArt4 <art4@wlabs.de>
Wed, 22 Jan 2025 10:53:34 +0000 (10:53 +0000)
committerArt4 <art4@wlabs.de>
Wed, 22 Jan 2025 10:53:34 +0000 (10:53 +0000)
src/App.php

index 73f2913b1a5841ac65bdef33017d4c9460e335b3..776b5ea909419113208be54e9fa0790ff7101b26 100644 (file)
@@ -158,7 +158,7 @@ class App
                $this->session   = $this->container->create(IHandleUserSessions::class);
                $this->appHelper = $this->container->create(AppHelper::class);
 
-               $this->loadSetupForFrontend(
+               $this->load(
                        $request,
                        $this->container->create(DbaDefinition::class),
                        $this->container->create(ViewDefinition::class),
@@ -272,7 +272,7 @@ class App
        /**
         * Load the whole app instance
         */
-       private function loadSetupForFrontend(ServerRequestInterface $request, DbaDefinition $dbaDefinition, ViewDefinition $viewDefinition)
+       private function load(ServerRequestInterface $request, 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'));