diff --git a/lib/private/Server.php b/lib/private/Server.php index 213ae7a83e0fc..55a3d2da7d885 100644 --- a/lib/private/Server.php +++ b/lib/private/Server.php @@ -911,7 +911,7 @@ public function __construct($webRoot, \OC\Config $config) { /** @deprecated 20.0.0 */ $this->registerDeprecatedAlias('IniWrapper', IniGetWrapper::class); - $this->registerService('AsyncCommandBus', function (Server $c) { + $this->registerService(IBus::class, function (Server $c) { $busClass = $c->getConfig()->getSystemValue('commandbus'); if ($busClass) { [$app, $class] = explode('::', $busClass, 2); @@ -926,7 +926,7 @@ public function __construct($webRoot, \OC\Config $config) { return new CronBus($jobList); } }); - $this->registerAlias(IBus::class, 'AsyncCommandBus'); + $this->registerDeprecatedAlias('AsyncCommandBus', IBus::class); /** @deprecated 20.0.0 */ $this->registerDeprecatedAlias('TrustedDomainHelper', TrustedDomainHelper::class); /** @deprecated 19.0.0 */ @@ -1959,7 +1959,7 @@ public function getIniWrapper() { * @deprecated 20.0.0 */ public function getCommandBus() { - return $this->query('AsyncCommandBus'); + return $this->get(IBus::class); } /**