id; } /** * Set prenom. * * @param string $prenom * * @return Auteur */ public function setPrenom($prenom) { $this->prenom = $prenom; return $this; } /** * Get prenom. * * @return string */ public function getPrenom() { return $this->prenom; } /** * Set nom. * * @param string $nom * * @return Auteur */ public function setNom($nom) { $this->nom = $nom; return $this; } /** * Get nom. * * @return string */ public function getNom() { return $this->nom; } /** * Set biographie. * * @param string $biographie * * @return Auteur */ public function setBiographie($biographie) { $this->biographie = $biographie; return $this; } /** * Get biographie. * * @return string */ public function getBiographie() { return $this->biographie; } /** * Set genre. * * @param string $genre * * @return Auteur */ public function setGenre($genre) { $this->genre = $genre; return $this; } /** * Get genre. * * @return string */ public function getGenre() { return $this->genre; } /** * Constructor */ public function __construct() { $this->livres = new \Doctrine\Common\Collections\ArrayCollection(); } /** * Add livre. * * @param \DocumentBundle\Entity\Livre $livre * * @return Auteur */ public function addLivre(\DocumentBundle\Entity\Livre $livre) { $this->livres[] = $livre; return $this; } /** * Remove livre. * * @param \DocumentBundle\Entity\Livre $livre * * @return boolean TRUE if this collection contained the specified element, FALSE otherwise. */ public function removeLivre(\DocumentBundle\Entity\Livre $livre) { return $this->livres->removeElement($livre); } /** * Get livres. * * @return \Doctrine\Common\Collections\Collection */ public function getLivres() { return $this->livres; } /** * Set invite. * * @param \DocumentBundle\Entity\Invite|null $invite * * @return Auteur */ public function setInvite(\DocumentBundle\Entity\Invite $invite = null) { $this->invite = $invite; return $this; } /** * Get invite. * * @return \DocumentBundle\Entity\Invite|null */ public function getInvite() { return $this->invite; } }