Pop\Cache\Adapter\Apc::__construct PHP Метод

__construct() публичный Метод

Instantiate the APC cache object
public __construct ( ) : Apc
Результат Apc
    public function __construct()
    {
        if (!function_exists('apc_cache_info')) {
            throw new Exception('Error: APC is not available.');
        }
        $this->info = apc_cache_info();
    }