CacheTool\Proxy\PhpProxy::stat_cache_clear PHP Method

stat_cache_clear() public method

Resets the contents of the file status cache, including the realpath cache
public stat_cache_clear ( ) : void
return void
    public function stat_cache_clear()
    {
        $code = new Code();
        $code->addStatement('return clearstatcache(true);');
        return $this->adapter->run($code);
    }