mirror of
https://github.com/nextcloud/server.git
synced 2026-04-21 14:23:17 -04:00
Refactor OC\Server::getEventLogger
Signed-off-by: Andrew Summers <18727110+summersab@users.noreply.github.com>
This commit is contained in:
parent
a88c1bdfb6
commit
e69ca0632a
1 changed files with 1 additions and 1 deletions
|
|
@ -716,7 +716,7 @@ class Server extends ServerContainer implements IServerContainer {
|
|||
|
||||
$this->registerService('RedisFactory', function (Server $c) {
|
||||
$systemConfig = $c->get(SystemConfig::class);
|
||||
return new RedisFactory($systemConfig, $c->getEventLogger());
|
||||
return new RedisFactory($systemConfig, $c->get(IEventLogger::class));
|
||||
});
|
||||
|
||||
$this->registerService(\OCP\Activity\IManager::class, function (Server $c) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue