Pop\Cache\Adapter\Apc::__construct PHP Method

__construct() public method

Instantiate the APC cache object
public __construct ( ) : Apc
return Apc
    public function __construct()
    {
        if (!function_exists('apc_cache_info')) {
            throw new Exception('Error: APC is not available.');
        }
        $this->info = apc_cache_info();
    }