use tab indents

This commit is contained in:
alexveebee 2025-04-24 17:10:56 +00:00
parent 416ac88407
commit 58c275472f

View File

@ -4,13 +4,6 @@ namespace Vichan\Data\Driver;
// Prevent direct access to this file for security
defined('TINYBOARD') or exit;
// Defines the required methods for any cache driver
interface CacheDriver {
public function get(string $key): mixed;
public function set(string $key, mixed $value, mixed $expires = false): void;
public function delete(string $key): void;
public function flush(): void;
}
// Handles caching using Redis, a fast in-memory data store
class RedisCacheDriver implements CacheDriver {