* @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(); } }