Merge branch 'refactor-entrypoint-auth_ejabberd.php' into refactor-entrypoint-console.php

This commit is contained in:
Art4 2024-12-26 17:03:42 +00:00
commit adee070ee6

View file

@ -134,7 +134,7 @@ class App
], ],
]); ]);
$this->setupLegacyServerLocator(); $this->setupLegacyServiceLocator();
$this->registerErrorHandler(); $this->registerErrorHandler();
@ -178,7 +178,7 @@ class App
$this->setupContainerForLogger(LogChannel::AUTH_JABBERED); $this->setupContainerForLogger(LogChannel::AUTH_JABBERED);
$this->setupLegacyServerLocator(); $this->setupLegacyServiceLocator();
$this->registerErrorHandler(); $this->registerErrorHandler();
@ -200,7 +200,7 @@ class App
$this->setupContainerForLogger(LogChannel::CONSOLE); $this->setupContainerForLogger(LogChannel::CONSOLE);
$this->setupLegacyServerLocator(); $this->setupLegacyServiceLocator();
$this->registerErrorHandler(); $this->registerErrorHandler();
@ -224,7 +224,7 @@ class App
]); ]);
} }
private function setupLegacyServerLocator(): void private function setupLegacyServiceLocator(): void
{ {
\Friendica\DI::init($this->container); \Friendica\DI::init($this->container);
} }