public function deleteNode($id)
  {
    $result = parent :: deleteNode($id);

    $this->cache->flush(self :: CACHE_GROUP);

    return $result;
  }
 function deleteNode($id)
 {
   $result = parent :: deleteNode($id);
   $this->flushCache();
   return $result;
 }