]> git.mxchange.org Git - friendica.git/blobdiff - bin/auth_ejabberd.php
Add parameter for "toArray()" method
[friendica.git] / bin / auth_ejabberd.php
index 206e484470058bff0aa98c3625f2f47b4f29e0e4..13dc6eeba0004d5b99b05a36807a7a4febdf1e8e 100755 (executable)
@@ -34,8 +34,8 @@
 
 use Dice\Dice;
 use Friendica\App\Mode;
-use Friendica\BaseObject;
 use Friendica\Util\ExAuth;
+use Psr\Log\LoggerInterface;
 
 if (sizeof($_SERVER["argv"]) == 0) {
        die();
@@ -54,7 +54,9 @@ chdir($directory);
 require dirname(__DIR__) . '/vendor/autoload.php';
 
 $dice = (new Dice())->addRules(include __DIR__ . '/../static/dependencies.config.php');
-BaseObject::setDependencyInjection($dice);
+$dice = $dice->addRule(LoggerInterface::class,['constructParams' => ['auth_ejabberd']]);
+
+\Friendica\DI::init($dice);
 
 $appMode = $dice->create(Mode::class);