Inheritance: implements Networking\InitCmsBundle\Lib\PhpCacheInterface
 /**
  * remove items from the cache and stop after one item.
  */
 protected function cleanCache()
 {
     if ($this->cleanCount < 1) {
         $this->cleanCount++;
         if (is_object($this->phpCache)) {
             $this->phpCache->clean();
         }
     }
 }