Skip to content
Snippets Groups Projects
Unverified Commit 6a63d7b4 authored by Christoph Wurst's avatar Christoph Wurst
Browse files

Deprecate the named alias of IBus

parent 3b82c6cc
No related branches found
No related tags found
No related merge requests found
...@@ -911,7 +911,7 @@ class Server extends ServerContainer implements IServerContainer { ...@@ -911,7 +911,7 @@ class Server extends ServerContainer implements IServerContainer {
/** @deprecated 20.0.0 */ /** @deprecated 20.0.0 */
$this->registerDeprecatedAlias('IniWrapper', IniGetWrapper::class); $this->registerDeprecatedAlias('IniWrapper', IniGetWrapper::class);
$this->registerService('AsyncCommandBus', function (Server $c) { $this->registerService(IBus::class, function (Server $c) {
$busClass = $c->getConfig()->getSystemValue('commandbus'); $busClass = $c->getConfig()->getSystemValue('commandbus');
if ($busClass) { if ($busClass) {
[$app, $class] = explode('::', $busClass, 2); [$app, $class] = explode('::', $busClass, 2);
...@@ -926,7 +926,7 @@ class Server extends ServerContainer implements IServerContainer { ...@@ -926,7 +926,7 @@ class Server extends ServerContainer implements IServerContainer {
return new CronBus($jobList); return new CronBus($jobList);
} }
}); });
$this->registerAlias(IBus::class, 'AsyncCommandBus'); $this->registerDeprecatedAlias('AsyncCommandBus', IBus::class);
/** @deprecated 20.0.0 */ /** @deprecated 20.0.0 */
$this->registerDeprecatedAlias('TrustedDomainHelper', TrustedDomainHelper::class); $this->registerDeprecatedAlias('TrustedDomainHelper', TrustedDomainHelper::class);
/** @deprecated 19.0.0 */ /** @deprecated 19.0.0 */
...@@ -1959,7 +1959,7 @@ class Server extends ServerContainer implements IServerContainer { ...@@ -1959,7 +1959,7 @@ class Server extends ServerContainer implements IServerContainer {
* @deprecated 20.0.0 * @deprecated 20.0.0
*/ */
public function getCommandBus() { public function getCommandBus() {
return $this->query('AsyncCommandBus'); return $this->get(IBus::class);
} }
/** /**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment