Răsfoiți Sursa

suppression des relations bidirectionnelles en trop

François 6 ani în urmă
părinte
comite
e5cdfc734e
2 a modificat fișierele cu 3 adăugiri și 35 ștergeri
  1. 2 2
      src/AppBundle/Entity/Film.php
  2. 1 33
      src/AppBundle/Entity/User.php

+ 2 - 2
src/AppBundle/Entity/Film.php

@@ -42,13 +42,13 @@ class Film
     private $realisateurs;
 
     /**
-     * @ORM\ManyToOne(targetEntity="AppBundle\Entity\User", inversedBy="filmsAjoutes")
+     * @ORM\ManyToOne(targetEntity="AppBundle\Entity\User")
      * @ORM\JoinColumn(nullable=true)
      */
     private $authered;
 
     /**
-     * @ORM\ManyToMany(targetEntity="AppBundle\Entity\User", inversedBy="films")
+     * @ORM\ManyToMany(targetEntity="AppBundle\Entity\User")
      * @var \Doctrine\Common\Collections\Collection
      */
     private $usersWantToView;

+ 1 - 33
src/AppBundle/Entity/User.php

@@ -120,15 +120,8 @@ class User implements UserInterface
      */
     private $roles = array();
 
-
     /**
-     * @ORM\OneToMany(targetEntity="AppBundle\Entity\Film", mappedBy="authered")
-     * @var \Doctrine\Common\Collections\Collection
-     */
-    private $filmsAjoutes;
-
-    /**
-     * @ORM\ManyToMany(targetEntity="AppBundle\Entity\Film", mappedBy="usersWantToView")
+     * @ORM\ManyToMany(targetEntity="AppBundle\Entity\Film")
      * @var \Doctrine\Common\Collections\Collection
      */
     private $films;
@@ -248,34 +241,9 @@ class User implements UserInterface
      */
     public function __construct()
     {
-        $this->filmsAjoutes = new \Doctrine\Common\Collections\ArrayCollection();
         $this->films = new \Doctrine\Common\Collections\ArrayCollection();
     }
 
-    /**
-     * Add film
-     *
-     * @param \AppBundle\Entity\Film $film
-     *
-     * @return User
-     */
-    public function addFilmAjoute(\AppBundle\Entity\Film $film)
-    {
-        $this->filmsAjoutes[] = $film;
-
-        return $this;
-    }
-
-    /**
-     * Remove film
-     *
-     * @param \AppBundle\Entity\Film $film
-     */
-    public function removeFilmAjoute(\AppBundle\Entity\Film $film)
-    {
-        $this->filmsAjoutes->removeElement($film);
-    }
-
     /**
      * Get films
      *