get($token); } public static function set(string $token, string $type, int $userId, ?int $expire = null): bool { return self::getInstance()->set($token, $type, $userId, $expire); } public static function check(string $token, string $type, int $userId): bool { return self::getInstance()->check($token, $type, $userId); } public static function delete(string $token): bool { return self::getInstance()->delete($token); } public static function clear(string $type, int $userId): bool { return self::getInstance()->clear($type, $userId); } public static function tokenExpirationCheck(array $token): void { self::getInstance()->tokenExpirationCheck($token); } }