/**
  * @param Category $category
  */
 public function addCategory(Category $category)
 {
     if (null === $category->getCertification()) {
         $category->setCertification($this);
     }
     $this->categories->add($category);
 }