src/Entity/Movie.php line 13

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\MovieRepository;
  4. use Doctrine\Common\Collections\ArrayCollection;
  5. use Doctrine\Common\Collections\Collection;
  6. use Doctrine\ORM\Mapping as ORM;
  7. /**
  8.  * @ORM\Entity(repositoryClass=MovieRepository::class)
  9.  */
  10. class Movie
  11. {
  12.     /**
  13.      * @ORM\Id
  14.      * @ORM\GeneratedValue
  15.      * @ORM\Column(type="integer")
  16.      */
  17.     private $id;
  18.     /**
  19.      * @ORM\Column(type="string", length=255)
  20.      */
  21.     private $title;
  22.     /**
  23.      * @ORM\Column(type="string", length=255)
  24.      */
  25.     private $realisedBy;
  26.     /**
  27.      * @ORM\Column(type="text")
  28.      */
  29.     private $content;
  30.     /**
  31.      * @ORM\Column(type="boolean")
  32.      */
  33.     private $onDisplay;
  34.     /**
  35.      * @ORM\Column(type="string", length=255, nullable=true)
  36.      */
  37.     private $file;
  38.     /**
  39.      * @ORM\Column(type="datetime_immutable")
  40.      */
  41.     private $createdAt;
  42.     /**
  43.      * @ORM\Column(type="datetime_immutable")
  44.      */
  45.     private $updateAt;
  46.     /**
  47.      * @ORM\Column(type="boolean")
  48.      */
  49.     private $isPublished;
  50.     /**
  51.      * @ORM\OneToMany(targetEntity=Note::class, mappedBy="idMovie")
  52.      */
  53.     private $notes;
  54.     /**
  55.      * @ORM\ManyToMany(targetEntity=MovieCategory::class)
  56.      */
  57.     private $idCategory;
  58.     /**
  59.      * @ORM\OneToMany(targetEntity=Session::class, mappedBy="idMovie", orphanRemoval=true)
  60.      */
  61.     private $sessions;
  62.     public function __construct()
  63.     {
  64.         $this->notes = new ArrayCollection();
  65.         $this->idCategory = new ArrayCollection();
  66.         $this->sessions = new ArrayCollection();
  67.     }
  68.     public function getId(): ?int
  69.     {
  70.         return $this->id;
  71.     }
  72.     public function getTitle(): ?string
  73.     {
  74.         return $this->title;
  75.     }
  76.     public function setTitle(string $title): self
  77.     {
  78.         $this->title $title;
  79.         return $this;
  80.     }
  81.     public function getRealisedBy(): ?string
  82.     {
  83.         return $this->realisedBy;
  84.     }
  85.     public function setRealisedBy(string $realisedBy): self
  86.     {
  87.         $this->realisedBy $realisedBy;
  88.         return $this;
  89.     }
  90.     public function getContent(): ?string
  91.     {
  92.         return $this->content;
  93.     }
  94.     public function setContent(string $content): self
  95.     {
  96.         $this->content $content;
  97.         return $this;
  98.     }
  99.     public function getOnDisplay(): ?bool
  100.     {
  101.         return $this->onDisplay;
  102.     }
  103.     public function setOnDisplay(bool $onDisplay): self
  104.     {
  105.         $this->onDisplay $onDisplay;
  106.         return $this;
  107.     }
  108.     public function getFile(): ?string
  109.     {
  110.         return $this->file;
  111.     }
  112.     public function setFile(?string $file): self
  113.     {
  114.         $this->file $file;
  115.         return $this;
  116.     }
  117.     public function getCreatedAt(): ?\DateTimeImmutable
  118.     {
  119.         return $this->createdAt;
  120.     }
  121.     public function setCreatedAt(\DateTimeImmutable $createdAt): self
  122.     {
  123.         $this->createdAt $createdAt;
  124.         return $this;
  125.     }
  126.     public function getUpdateAt(): ?\DateTimeImmutable
  127.     {
  128.         return $this->updateAt;
  129.     }
  130.     public function setUpdateAt(\DateTimeImmutable $updateAt): self
  131.     {
  132.         $this->updateAt $updateAt;
  133.         return $this;
  134.     }
  135.     public function getIsPublished(): ?bool
  136.     {
  137.         return $this->isPublished;
  138.     }
  139.     public function setIsPublished(bool $isPublished): self
  140.     {
  141.         $this->isPublished $isPublished;
  142.         return $this;
  143.     }
  144.     /**
  145.      * @return Collection|Note[]
  146.      */
  147.     public function getNotes(): Collection
  148.     {
  149.         return $this->notes;
  150.     }
  151.     public function addNote(Note $note): self
  152.     {
  153.         if (!$this->notes->contains($note)) {
  154.             $this->notes[] = $note;
  155.             $note->setIdMovie($this);
  156.         }
  157.         return $this;
  158.     }
  159.     public function removeNote(Note $note): self
  160.     {
  161.         if ($this->notes->removeElement($note)) {
  162.             // set the owning side to null (unless already changed)
  163.             if ($note->getIdMovie() === $this) {
  164.                 $note->setIdMovie(null);
  165.             }
  166.         }
  167.         return $this;
  168.     }
  169.     /**
  170.      * @return Collection|MovieCategory[]
  171.      */
  172.     public function getIdCategory(): Collection
  173.     {
  174.         return $this->idCategory;
  175.     }
  176.     public function addIdCategory(MovieCategory $idCategory): self
  177.     {
  178.         if (!$this->idCategory->contains($idCategory)) {
  179.             $this->idCategory[] = $idCategory;
  180.         }
  181.         return $this;
  182.     }
  183.     public function removeIdCategory(MovieCategory $idCategory): self
  184.     {
  185.         $this->idCategory->removeElement($idCategory);
  186.         return $this;
  187.     }
  188.     /**
  189.      * @return Collection|Session[]
  190.      */
  191.     public function getSessions(): Collection
  192.     {
  193.         return $this->sessions;
  194.     }
  195.     public function addSession(Session $session): self
  196.     {
  197.         if (!$this->sessions->contains($session)) {
  198.             $this->sessions[] = $session;
  199.             $session->setIdMovie($this);
  200.         }
  201.         return $this;
  202.     }
  203.     public function removeSession(Session $session): self
  204.     {
  205.         if ($this->sessions->removeElement($session)) {
  206.             // set the owning side to null (unless already changed)
  207.             if ($session->getIdMovie() === $this) {
  208.                 $session->setIdMovie(null);
  209.             }
  210.         }
  211.         return $this;
  212.     }
  213. }