public function moveTree($id, $target_id)
  {
    $result = parent :: moveTree($id, $target_id);

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

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