|
@@ -35,20 +35,6 @@ class Film
|
|
|
*/
|
|
|
private $annee;
|
|
|
|
|
|
- /**
|
|
|
- * @var string
|
|
|
- *
|
|
|
- * @ORM\Column(name="commentaire", type="text", nullable=true)
|
|
|
- */
|
|
|
- private $commentaire;
|
|
|
-
|
|
|
- /**
|
|
|
- * @var integer
|
|
|
- *
|
|
|
- * @ORM\Column(name="note", type="integer", nullable=true)
|
|
|
- */
|
|
|
- private $note;
|
|
|
-
|
|
|
/**
|
|
|
* @ORM\ManyToMany(targetEntity="AppBundle\Entity\Realisateur", inversedBy="films", cascade="persist")
|
|
|
* @var \Doctrine\Common\Collections\Collection
|
|
@@ -84,8 +70,6 @@ class Film
|
|
|
$authered->addFilm($this);
|
|
|
}
|
|
|
|
|
|
-
|
|
|
-
|
|
|
/**
|
|
|
* Get id
|
|
|
*
|
|
@@ -144,54 +128,6 @@ class Film
|
|
|
return $this->annee;
|
|
|
}
|
|
|
|
|
|
- /**
|
|
|
- * Set commentaire
|
|
|
- *
|
|
|
- * @param string $commentaire
|
|
|
- *
|
|
|
- * @return Film
|
|
|
- */
|
|
|
- public function setCommentaire($commentaire)
|
|
|
- {
|
|
|
- $this->commentaire = $commentaire;
|
|
|
-
|
|
|
- return $this;
|
|
|
- }
|
|
|
-
|
|
|
- /**
|
|
|
- * Get titre
|
|
|
- *
|
|
|
- * @return string
|
|
|
- */
|
|
|
- public function getCommentaire()
|
|
|
- {
|
|
|
- return $this->commentaire;
|
|
|
- }
|
|
|
-
|
|
|
- /**
|
|
|
- * Set note
|
|
|
- *
|
|
|
- * @param integer $note
|
|
|
- *
|
|
|
- * @return Film
|
|
|
- */
|
|
|
- public function setNote($note)
|
|
|
- {
|
|
|
- $this->note = $note;
|
|
|
-
|
|
|
- return $this;
|
|
|
- }
|
|
|
-
|
|
|
- /**
|
|
|
- * Get note
|
|
|
- *
|
|
|
- * @return integer
|
|
|
- */
|
|
|
- public function getNote()
|
|
|
- {
|
|
|
- return $this->note;
|
|
|
- }
|
|
|
-
|
|
|
/**
|
|
|
* Constructor
|
|
|
*/
|