Beispiel #1
0
 /**
  * removing the category to this product
  *
  * @param ProductCategory $category
  *
  * @return Product
  */
 public function removeCategory(ProductCategory $category)
 {
     Product_Category::remove($this, $category);
     return $this;
 }