CacheTool\Proxy\ApcProxy::apc_clear_cache PHP Method

apc_clear_cache() public method

Clears the user/system cache
Since: 2.0.0
public apc_clear_cache ( string $cache_type = "" ) : boolean
$cache_type string If cache_type is "user", the user cache will be cleared; otherwise, the system cache (cached files) will be cleared.
return boolean Always returns true
    public function apc_clear_cache($cache_type = "")
    {
        $code = new Code();
        $code->addStatement(sprintf('return apc_clear_cache(%s);', var_export($cache_type, true)));
        return $this->adapter->run($code);
    }