Realisateur.php 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\RealisateurRepository;
  4. use Doctrine\Common\Collections\Collection;
  5. use Doctrine\ORM\Mapping as ORM;
  6. #[ORM\Table(name: "realisateur")]
  7. #[ORM\Entity(repositoryClass: RealisateurRepository::class)]
  8. class Realisateur
  9. {
  10. #[ORM\Column(name: "id", type: "integer")]
  11. #[ORM\Id]
  12. #[ORM\GeneratedValue(strategy: "AUTO")]
  13. private ?int $id = null;
  14. #[ORM\Column(name: "nom_complet", type: "string", length: 191, unique: true)]
  15. private ?string $nomComplet = null;
  16. #[ORM\ManyToMany(targetEntity: Film::class, mappedBy: "realisateurs", cascade: ["persist"])]
  17. private ?Collection $films = null;
  18. public function getId(): ?int
  19. {
  20. return $this->id;
  21. }
  22. public function __construct()
  23. {
  24. $this->films = new \Doctrine\Common\Collections\ArrayCollection();
  25. }
  26. public function addFilm(Film $film): self
  27. {
  28. $this->films[] = $film;
  29. return $this;
  30. }
  31. public function removeFilm(Film $film): self
  32. {
  33. $this->films->removeElement($film);
  34. return $this;
  35. }
  36. public function getFilms(): Collection
  37. {
  38. return $this->films;
  39. }
  40. public function getNomComplet (): ?string
  41. {
  42. return $this->nomComplet;
  43. }
  44. public function setNomComplet(?string $nom): self
  45. {
  46. $this->nomComplet = $nom;
  47. return $this;
  48. }
  49. }