|
@@ -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
|
|
|
*
|