/**
  * Remove an item
  *
  * @param string $key
  * @return bool
  */
 public function removeItem($key)
 {
     $this->setTags($key, []);
     // with tags
     return parent::removeItem($key);
 }