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