From c90325fa6e538591f3b83d85c0eaa2f4b723cbb9 Mon Sep 17 00:00:00 2001 From: Jordi Boggiano Date: Fri, 16 Jul 2021 14:53:20 +0200 Subject: [PATCH] Fix missing assignment --- .../Core/Authentication/RememberMe/CacheTokenVerifier.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Symfony/Component/Security/Core/Authentication/RememberMe/CacheTokenVerifier.php b/src/Symfony/Component/Security/Core/Authentication/RememberMe/CacheTokenVerifier.php index 2b96eff06287a..dabc719055fcf 100644 --- a/src/Symfony/Component/Security/Core/Authentication/RememberMe/CacheTokenVerifier.php +++ b/src/Symfony/Component/Security/Core/Authentication/RememberMe/CacheTokenVerifier.php @@ -32,6 +32,7 @@ public function __construct(CacheItemPoolInterface $cache, int $outdatedTokenTtl { $this->cache = $cache; $this->outdatedTokenTtl = $outdatedTokenTtl; + $this->cacheKeyPrefix = $cacheKeyPrefix; } /**