Update LoggerWrapperCache.php

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

Signed-off-by: Velwark <levinfrerich9@gmail.com>
pull/44794/head
Velwark 1 month ago committed by Côme Chilliet
parent 0211ed5eeb
commit 535d5de037

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

Loading…
Cancel
Save