Merge pull request #44981 from nextcloud/backport/44794/stable29

[stable29] fix(memcache): remove double $$ to fix error
This commit is contained in:
Ferdinand Thiessen 2024-04-24 18:07:34 +02:00 committed by GitHub
commit c5ee34cb4c
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 */