Merge pull request #44980 from nextcloud/backport/44794/stable28

[stable28] fix(memcache): remove double $$ to fix error
This commit is contained in:
Git'Fellow 2024-06-03 09:11:38 +02:00 committed by GitHub
commit 37592233e1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

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 */