Networking\InitCmsBundle\EventListener\CacheCleaner::cleanCache PHP Method

cleanCache() protected method

remove items from the cache and stop after one item.
protected cleanCache ( )
    protected function cleanCache()
    {
        if ($this->cleanCount < 1) {
            $this->cleanCount++;
            if (is_object($this->phpCache)) {
                $this->phpCache->clean();
            }
        }
    }