|
@@ -29,7 +29,8 @@ class Category
|
|
|
*
|
|
|
* @ORM\OneToMany(
|
|
|
* targetEntity = "App\Entity\Product",
|
|
|
- * mappedBy = "category"
|
|
|
+ * mappedBy = "category",
|
|
|
+ * orphanRemoval= true,
|
|
|
* )
|
|
|
*/
|
|
|
private $products;
|
|
@@ -38,6 +39,18 @@ class Category
|
|
|
$this->products = new ArrayCollection();
|
|
|
}
|
|
|
|
|
|
+ public function addProduct(Product $product): self {
|
|
|
+ // Avoid adding product twice.
|
|
|
+ if ($this->products->contains($product)) {
|
|
|
+ return $this;
|
|
|
+ }
|
|
|
+
|
|
|
+ $this->products[] = $product;
|
|
|
+ // Actually set the information on the *owning* side.
|
|
|
+ $product->setCategory($this);
|
|
|
+ return $this;
|
|
|
+ }
|
|
|
+
|
|
|
/**
|
|
|
* @return mixed
|
|
|
*/
|
|
@@ -59,6 +72,13 @@ class Category
|
|
|
return $this->products;
|
|
|
}
|
|
|
|
|
|
+ public function removeProduct(Product $product): self {
|
|
|
+ $this->products->removeElement($product);
|
|
|
+ // Set the *owning* side to null.
|
|
|
+ $product->setCategory(null);
|
|
|
+ return $this;
|
|
|
+ }
|
|
|
+
|
|
|
/**
|
|
|
* @param mixed $name
|
|
|
*
|