This commit is contained in:
the-djmaze 2022-12-23 19:05:54 +01:00
parent a83cb9150e
commit 75b59322ad

View file

@ -54,7 +54,7 @@ class Redis implements \MailSo\Cache\DriverInterface
$this->sKeyPrefix = empty($sKeyPrefix)
? $sKeyPrefix
: \preg_replace('/[^a-zA-Z0-9_]/', '_', rtrim(trim($this->sKeyPrefix), '\\/')) . '/';
: \preg_replace('/[^a-zA-Z0-9_]/', '_', rtrim(trim($sKeyPrefix), '\\/')) . '/';
}
public function Set(string $sKey, string $sValue) : bool