X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=bin%2Fauth_ejabberd.php;h=13dc6eeba0004d5b99b05a36807a7a4febdf1e8e;hb=4a3544582c570d43f7d274ddbae7ea835176cbd9;hp=a097febbce3f43f9be2099ff7fb71e61c516f93c;hpb=930ce855f8b1e68687e9caa6d1e0bc7410e8c55d;p=friendica.git diff --git a/bin/auth_ejabberd.php b/bin/auth_ejabberd.php index a097febbce..13dc6eeba0 100755 --- a/bin/auth_ejabberd.php +++ b/bin/auth_ejabberd.php @@ -32,9 +32,10 @@ * */ +use Dice\Dice; use Friendica\App\Mode; -use Friendica\BaseObject; use Friendica\Util\ExAuth; +use Psr\Log\LoggerInterface; if (sizeof($_SERVER["argv"]) == 0) { die(); @@ -52,9 +53,10 @@ chdir($directory); require dirname(__DIR__) . '/vendor/autoload.php'; -$dice = new \Dice\Dice(); -$dice = $dice->addRules(include __DIR__ . '/../static/dependencies.config.php'); -BaseObject::setDependencyInjection($dice); +$dice = (new Dice())->addRules(include __DIR__ . '/../static/dependencies.config.php'); +$dice = $dice->addRule(LoggerInterface::class,['constructParams' => ['auth_ejabberd']]); + +\Friendica\DI::init($dice); $appMode = $dice->create(Mode::class);