Merge pull request #44794 from Velwark/patch-3

fix(memcache): remove double $$ to fix error
pull/44982/head
Andy Scherzinger 2 weeks ago committed by GitHub
commit 9872755711
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

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

Loading…
Cancel
Save