MOON
Server: Apache
System: Linux nserver.cafsindia.com 4.18.0-553.123.2.lve.el8.x86_64 #1 SMP Thu May 7 23:17:13 UTC 2026 x86_64
User: cafsindia (1002)
PHP: 8.2.30
Disabled: NONE
Upload Files
File: /home/cafsindia/sblt.co.in/wp-content/plugins/advanced-access-manager/application/Core/Cache.php
<?php

/**
 * ======================================================================
 * LICENSE: This file is subject to the terms and conditions defined in *
 * file 'license.txt', which is part of this source code package.       *
 * ======================================================================
 */

/**
 * AAM Core Cache
 * 
 * @package AAM
 * @author Vasyl Martyniuk <vasyl@vasyltech.com>
 * @todo - Remove with v6.0
 */
class AAM_Core_Cache {
    
    /**
     * Get cached option
     * 
     * @param string $option
     * 
     * @return mixed
     * 
     * @access public
     */
    public static function get() {
        return null;
    }
    
    /**
     * Set cache option
     * 
     * @param string $option
     * @param mixed  $data
     * @param mixed  $legacy Deprecated as the first arg was subject
     * 
     * @return void
     * 
     * @access public
     */
    public static function set() {
    }
    
    /**
     * Check if key exists
     * 
     * @param string $option
     * 
     * @return boolean
     * 
     * @access public
     */
    public static function has() {
        return null;
    }
    
    /**
     * 
     */
    public static function clear() {
        AAM_Core_API::clearCache();
    }
}