Beispiel #1
0
 /**
  * {@inheritdoc}
  */
 public function remove($identifier)
 {
     if (!$this->_isEnabled()) {
         return true;
     }
     return parent::remove($identifier);
 }
Beispiel #2
0
 /**
  * {@inheritdoc}
  */
 public function remove($identifier)
 {
     \Magento\Framework\Profiler::start('cache_remove', $this->_getProfilerTags('remove'));
     $result = parent::remove($identifier);
     \Magento\Framework\Profiler::stop('cache_remove');
     return $result;
 }
Beispiel #3
0
 /**
  * {@inheritdoc}
  */
 public function remove($identifier)
 {
     $result = parent::remove($identifier);
     $this->log(compact('identifier'));
     return $result;
 }