<?php
namespace App\Entity;
use App\Repository\MovieRepository;
use Doctrine\Common\Collections\ArrayCollection;
use Doctrine\Common\Collections\Collection;
use Doctrine\ORM\Mapping as ORM;
/**
* @ORM\Entity(repositoryClass=MovieRepository::class)
*/
class Movie
{
/**
* @ORM\Id
* @ORM\GeneratedValue
* @ORM\Column(type="integer")
*/
private $id;
/**
* @ORM\Column(type="string", length=255)
*/
private $title;
/**
* @ORM\Column(type="string", length=255)
*/
private $realisedBy;
/**
* @ORM\Column(type="text")
*/
private $content;
/**
* @ORM\Column(type="boolean")
*/
private $onDisplay;
/**
* @ORM\Column(type="string", length=255, nullable=true)
*/
private $file;
/**
* @ORM\Column(type="datetime_immutable")
*/
private $createdAt;
/**
* @ORM\Column(type="datetime_immutable")
*/
private $updateAt;
/**
* @ORM\Column(type="boolean")
*/
private $isPublished;
/**
* @ORM\OneToMany(targetEntity=Note::class, mappedBy="idMovie")
*/
private $notes;
/**
* @ORM\ManyToMany(targetEntity=MovieCategory::class)
*/
private $idCategory;
/**
* @ORM\OneToMany(targetEntity=Session::class, mappedBy="idMovie", orphanRemoval=true)
*/
private $sessions;
public function __construct()
{
$this->notes = new ArrayCollection();
$this->idCategory = new ArrayCollection();
$this->sessions = new ArrayCollection();
}
public function getId(): ?int
{
return $this->id;
}
public function getTitle(): ?string
{
return $this->title;
}
public function setTitle(string $title): self
{
$this->title = $title;
return $this;
}
public function getRealisedBy(): ?string
{
return $this->realisedBy;
}
public function setRealisedBy(string $realisedBy): self
{
$this->realisedBy = $realisedBy;
return $this;
}
public function getContent(): ?string
{
return $this->content;
}
public function setContent(string $content): self
{
$this->content = $content;
return $this;
}
public function getOnDisplay(): ?bool
{
return $this->onDisplay;
}
public function setOnDisplay(bool $onDisplay): self
{
$this->onDisplay = $onDisplay;
return $this;
}
public function getFile(): ?string
{
return $this->file;
}
public function setFile(?string $file): self
{
$this->file = $file;
return $this;
}
public function getCreatedAt(): ?\DateTimeImmutable
{
return $this->createdAt;
}
public function setCreatedAt(\DateTimeImmutable $createdAt): self
{
$this->createdAt = $createdAt;
return $this;
}
public function getUpdateAt(): ?\DateTimeImmutable
{
return $this->updateAt;
}
public function setUpdateAt(\DateTimeImmutable $updateAt): self
{
$this->updateAt = $updateAt;
return $this;
}
public function getIsPublished(): ?bool
{
return $this->isPublished;
}
public function setIsPublished(bool $isPublished): self
{
$this->isPublished = $isPublished;
return $this;
}
/**
* @return Collection|Note[]
*/
public function getNotes(): Collection
{
return $this->notes;
}
public function addNote(Note $note): self
{
if (!$this->notes->contains($note)) {
$this->notes[] = $note;
$note->setIdMovie($this);
}
return $this;
}
public function removeNote(Note $note): self
{
if ($this->notes->removeElement($note)) {
// set the owning side to null (unless already changed)
if ($note->getIdMovie() === $this) {
$note->setIdMovie(null);
}
}
return $this;
}
/**
* @return Collection|MovieCategory[]
*/
public function getIdCategory(): Collection
{
return $this->idCategory;
}
public function addIdCategory(MovieCategory $idCategory): self
{
if (!$this->idCategory->contains($idCategory)) {
$this->idCategory[] = $idCategory;
}
return $this;
}
public function removeIdCategory(MovieCategory $idCategory): self
{
$this->idCategory->removeElement($idCategory);
return $this;
}
/**
* @return Collection|Session[]
*/
public function getSessions(): Collection
{
return $this->sessions;
}
public function addSession(Session $session): self
{
if (!$this->sessions->contains($session)) {
$this->sessions[] = $session;
$session->setIdMovie($this);
}
return $this;
}
public function removeSession(Session $session): self
{
if ($this->sessions->removeElement($session)) {
// set the owning side to null (unless already changed)
if ($session->getIdMovie() === $this) {
$session->setIdMovie(null);
}
}
return $this;
}
}