Example #1
0
 /**
  * Add a category in the product association.
  * (Owning side).
  *
  * @param Category $category The category to associate
  */
 public function addCategory($category)
 {
     $category->addProduct($this);
     if (!$this->categories->contains($category)) {
         $this->categories->add($category);
     }
 }