Cachearium\Backend\CacheFilesystem::cleanP PHP Method

cleanP() public method

(non-PHPdoc)
public cleanP ( $base, $id )
    public function cleanP($base, $id)
    {
        // @codeCoverageIgnoreStart
        if (!$this->enabled) {
            return false;
        }
        // @codeCoverageIgnoreEnd
        $group = $this->hashKey(new CacheKey($base, $id));
        $retval = $this->cache->clean($group, 'ingroup');
        $this->log(CacheLogEnum::CLEANED, new CacheKey($base, $id));
        return $retval;
    }