Habari\Cache::__static PHP Method

__static() public static method

Set up the static cache instance in __autoload()
public static __static ( )
    public static function __static()
    {
        self::$cache_class = Config::get('cache_class', defined('CACHE_CLASS') ? CACHE_CLASS : 'Habari\\FileCache');
        self::$instance = new self::$cache_class();
    }