Networking\InitCmsBundle\Lib\PhpCache::touch PHP Method

touch() public method

public touch ( $keyword, integer $time = null, array $option = [] ) : boolean
$keyword
$time integer
$option array
return boolean
    public function touch($keyword, $time = null, $option = array())
    {
        if (is_null($time)) {
            $time = $this->cacheTime;
        }
        return $this->phpFastCache->instance->touch($keyword, $time, $option);
    }