From 97b2ce7e2af477c65efd0999a40a4edafc16cfb9 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Wed, 10 Jul 2024 23:00:05 +0200 Subject: [PATCH] chore: remove Redis::DEFAULT_TTL constant now that it's defined in the interface Signed-off-by: Robin Appelman --- lib/private/Memcache/Redis.php | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/private/Memcache/Redis.php b/lib/private/Memcache/Redis.php index cbafadc3b1b90..87dc86ab10d30 100644 --- a/lib/private/Memcache/Redis.php +++ b/lib/private/Memcache/Redis.php @@ -29,7 +29,6 @@ class Redis extends Cache implements IMemcacheTTL { ], ]; - private const DEFAULT_TTL = 24 * 60 * 60; // 1 day private const MAX_TTL = 30 * 24 * 60 * 60; // 1 month /**