mirror of
https://github.com/friendica/friendica
synced 2025-01-08 02:44:43 +00:00
Merge branch 'refactor-entrypoint-daemon.php' into refactor-entrypoint-worker.php
This commit is contained in:
commit
2d1142743e
1 changed files with 5 additions and 5 deletions
10
src/App.php
10
src/App.php
|
@ -143,7 +143,7 @@ class App
|
|||
],
|
||||
]);
|
||||
|
||||
$this->setupLegacyServerLocator();
|
||||
$this->setupLegacyServiceLocator();
|
||||
|
||||
$this->registerErrorHandler();
|
||||
|
||||
|
@ -186,7 +186,7 @@ class App
|
|||
|
||||
$this->setupContainerForLogger(LogChannel::AUTH_JABBERED);
|
||||
|
||||
$this->setupLegacyServerLocator();
|
||||
$this->setupLegacyServiceLocator();
|
||||
|
||||
$this->registerErrorHandler();
|
||||
|
||||
|
@ -211,7 +211,7 @@ class App
|
|||
|
||||
$this->setupContainerForLogger(LogChannel::CONSOLE);
|
||||
|
||||
$this->setupLegacyServerLocator();
|
||||
$this->setupLegacyServiceLocator();
|
||||
|
||||
$this->registerErrorHandler();
|
||||
|
||||
|
@ -226,7 +226,7 @@ class App
|
|||
|
||||
$this->setupContainerForLogger(LogChannel::DAEMON);
|
||||
|
||||
$this->setupLegacyServerLocator();
|
||||
$this->setupLegacyServiceLocator();
|
||||
|
||||
$this->registerErrorHandler();
|
||||
|
||||
|
@ -451,7 +451,7 @@ class App
|
|||
]);
|
||||
}
|
||||
|
||||
private function setupLegacyServerLocator(): void
|
||||
private function setupLegacyServiceLocator(): void
|
||||
{
|
||||
DI::init($this->container);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue