Update LoggerWrapperCache.php

Extra Dollar Sign caused errors in Nextcloud. Removing the Dollar Sign Solved the Problem.

Signed-off-by: Velwark <levinfrerich9@gmail.com>
This commit is contained in:
Velwark 2024-04-11 20:10:11 +02:00 committed by Côme Chilliet
parent 0211ed5eeb
commit 535d5de037
1 changed files with 1 additions and 1 deletions

View File

@ -75,7 +75,7 @@ class LoggerWrapperCache extends Cache implements IMemcacheTTL {
FILE_APPEND
);
return $this->wrappedCache->set($key, $value, $$ttl);
return $this->wrappedCache->set($key, $value, $ttl);
}
/** @inheritDoc */