<?php
namespace App\Entity;
use App\Repository\DeliverableVersionsRepository;
use Doctrine\Common\Collections\ArrayCollection;
use Doctrine\Common\Collections\Collection;
use Doctrine\DBAL\Types\Types;
use Doctrine\ORM\Mapping as ORM;
#[ORM\Entity(repositoryClass: DeliverableVersionsRepository::class)]
class DeliverableVersions
{
#[ORM\Id]
#[ORM\GeneratedValue]
#[ORM\Column]
private ?int $id = null;
#[ORM\Column(length: 255)]
private ?string $title = null;
#[ORM\ManyToOne]
#[ORM\JoinColumn(nullable: false)]
private ?Status $status = null;
#[ORM\Column(type: Types::DATETIME_MUTABLE, nullable: true)]
private ?\DateTimeInterface $createdAt = null;
#[ORM\OneToOne(mappedBy: 'livrable_version', cascade: ['persist', 'remove'])]
private ?VimeoVideo $vimeoVideo = null;
#[ORM\ManyToOne(inversedBy: 'deliverableVersions')]
#[ORM\JoinColumn(nullable: false)]
private ?ProjectDeliverable $deliverable = null;
#[ORM\Column(type: Types::TEXT, nullable: true)]
private ?string $description = null;
#[ORM\Column(type: Types::BOOLEAN, nullable:true)]
private ?bool $isVimeoComments = null;
#[ORM\Column(type: Types::BOOLEAN, nullable:true)]
private ?bool $isValidate = null;
#[ORM\Column(type: Types::TEXT, nullable: true)]
private ?string $remarques = null;
#[ORM\Column]
private ?int $version_number = null;
#[ORM\OneToMany(mappedBy: 'idVersion', targetEntity: Logs::class, cascade:['remove'])]
#[ORM\OrderBy(['createdAt'=>'DESC'])]
private Collection $logs;
public function __construct()
{
$this->logs = 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 getStatus(): ?Status
{
return $this->status;
}
public function setStatus(?Status $status): self
{
$this->status = $status;
return $this;
}
public function getCreatedAt(): ?\DateTimeInterface
{
return $this->createdAt;
}
public function setCreatedAt(?\DateTimeInterface $createdAt): self
{
$this->createdAt = $createdAt;
return $this;
}
public function getVimeoVideo(): ?VimeoVideo
{
return $this->vimeoVideo;
}
public function setVimeoVideo(VimeoVideo $vimeoVideo): self
{
// set the owning side of the relation if necessary
if ($vimeoVideo->getLivrableVersion() !== $this) {
$vimeoVideo->setLivrableVersion($this);
}
$this->vimeoVideo = $vimeoVideo;
return $this;
}
public function getDeliverable(): ?ProjectDeliverable
{
return $this->deliverable;
}
public function setDeliverable(?ProjectDeliverable $deliverable): self
{
$this->deliverable = $deliverable;
return $this;
}
public function getDescription(): ?string
{
return $this->description;
}
public function setDescription(?string $description): self
{
$this->description = $description;
return $this;
}
public function isIsVimeoComments(): ?bool
{
return $this->isVimeoComments;
}
public function setIsVimeoComments(bool $isVimeoComments): self
{
$this->isVimeoComments = $isVimeoComments;
return $this;
}
public function isIsValidate(): ?bool
{
return $this->isValidate;
}
public function setIsValidate(bool $isValidate): self
{
$this->isValidate = $isValidate;
return $this;
}
public function getRemarques(): ?string
{
return $this->remarques;
}
public function setRemarques(?string $remarques): self
{
$this->remarques = $remarques;
return $this;
}
public function getVersionNumber(): ?int
{
return $this->version_number;
}
public function setVersionNumber(int $version_number): self
{
$this->version_number = $version_number;
return $this;
}
/**
* @return Collection<int, Logs>
*/
public function getLogs(): Collection
{
return $this->logs;
}
public function addLog(Logs $log): self
{
if (!$this->logs->contains($log)) {
$this->logs->add($log);
$log->setIdVersion($this);
}
return $this;
}
public function removeLog(Logs $log): self
{
if ($this->logs->removeElement($log)) {
// set the owning side to null (unless already changed)
if ($log->getIdVersion() === $this) {
$log->setIdVersion(null);
}
}
return $this;
}
}