/**
  * {@inheritDoc}
  */
 private function createTerm($weight, $langCode, $key, $content)
 {
     $term = new TermOfUse();
     $term->setWeight($weight);
     $term->setLangCode($langCode);
     $term->setKeyCode($key);
     $term->setContent($content);
     $this->manager->persist($term);
 }