Sfoglia il codice sorgente

Correction problème de bidirectionnalité

François 6 anni fa
parent
commit
c80be9f68e
2 ha cambiato i file con 53 aggiunte e 63 eliminazioni
  1. 3 4
      src/AppBundle/Entity/Film.php
  2. 50 59
      src/AppBundle/Entity/User.php

+ 3 - 4
src/AppBundle/Entity/Film.php

@@ -43,12 +43,12 @@ class Film
 
     /**
      * @ORM\ManyToOne(targetEntity="AppBundle\Entity\User")
-     * @ORM\JoinColumn(nullable=false)
+     * @ORM\JoinColumn(nullable=true)
      */
     private $authered;
 
     /**
-     * @ORM\ManyToMany(targetEntity="AppBundle\Entity\User")
+     * @ORM\ManyToMany(targetEntity="AppBundle\Entity\User", inversedBy="films")
      * @var \Doctrine\Common\Collections\Collection
      */
     private $usersWantToView;
@@ -67,7 +67,7 @@ class Film
     public function setAuthered($authered)
     {
         $this->authered = $authered;
-        $authered->addFilm($this);
+        $this->addUserWantToView($authered);
     }
 
     /**
@@ -171,7 +171,6 @@ class Film
         return $this->realisateurs;
     }
 
-
     ///////////////////////////////////////////////////////
     /**
      * Add user

+ 50 - 59
src/AppBundle/Entity/User.php

@@ -44,54 +44,6 @@ class User implements UserInterface
      */
     private $nom;
 
-    /**
-     * @return string
-     */
-    public function getPrenom()
-    {
-        return $this->prenom;
-    }
-
-    /**
-     * @param string $prenom
-     */
-    public function setPrenom($prenom)
-    {
-        $this->prenom = $prenom;
-    }
-
-    /**
-     * @return string
-     */
-    public function getNom()
-    {
-        return $this->nom;
-    }
-
-    /**
-     * @param string $nom
-     */
-    public function setNom($nom)
-    {
-        $this->nom = $nom;
-    }
-
-    /**
-     * @return string
-     */
-    public function getMail()
-    {
-        return $this->mail;
-    }
-
-    /**
-     * @param string $mail
-     */
-    public function setMail($mail)
-    {
-        $this->mail = $mail;
-    }
-
     /**
      * @var string
      *
@@ -121,7 +73,7 @@ class User implements UserInterface
     private $roles = array();
 
     /**
-     * @ORM\ManyToMany(targetEntity="AppBundle\Entity\Film")
+     * @ORM\ManyToMany(targetEntity="AppBundle\Entity\Film", mappedBy="usersWantToView")
      * @var \Doctrine\Common\Collections\Collection
      */
     private $films;
@@ -160,6 +112,55 @@ class User implements UserInterface
         return $this->username;
     }
 
+    /**
+     * @return string
+     */
+    public function getPrenom()
+    {
+        return $this->prenom;
+    }
+
+    /**
+     * @param string $prenom
+     */
+    public function setPrenom($prenom)
+    {
+        $this->prenom = $prenom;
+    }
+
+    /**
+     * @return string
+     */
+    public function getNom()
+    {
+        return $this->nom;
+    }
+
+    /**
+     * @param string $nom
+     */
+    public function setNom($nom)
+    {
+        $this->nom = $nom;
+    }
+
+    /**
+     * @return string
+     */
+    public function getMail()
+    {
+        return $this->mail;
+    }
+
+    /**
+     * @param string $mail
+     */
+    public function setMail($mail)
+    {
+        $this->mail = $mail;
+    }
+
+
     /**
      * Set password
      *
@@ -244,16 +245,6 @@ class User implements UserInterface
         $this->films = new \Doctrine\Common\Collections\ArrayCollection();
     }
 
-    /**
-     * Get films
-     *
-     * @return \Doctrine\Common\Collections\Collection
-     */
-    public function getFilmsAJoutes()
-    {
-        return $this->filmsAjoutes;
-    }
-
     ///////////////////////////////////////////////////////////////
     /**
      * Add film