src/Entity/DeliverableVersions.php line 12

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\DeliverableVersionsRepository;
  4. use Doctrine\Common\Collections\ArrayCollection;
  5. use Doctrine\Common\Collections\Collection;
  6. use Doctrine\DBAL\Types\Types;
  7. use Doctrine\ORM\Mapping as ORM;
  8. #[ORM\Entity(repositoryClassDeliverableVersionsRepository::class)]
  9. class DeliverableVersions
  10. {
  11.     #[ORM\Id]
  12.     #[ORM\GeneratedValue]
  13.     #[ORM\Column]
  14.     private ?int $id null;
  15.     #[ORM\Column(length255)]
  16.     private ?string $title null;
  17.     #[ORM\ManyToOne]
  18.     #[ORM\JoinColumn(nullablefalse)]
  19.     private ?Status $status null;
  20.     #[ORM\Column(typeTypes::DATETIME_MUTABLEnullabletrue)]
  21.     private ?\DateTimeInterface $createdAt null;
  22.     #[ORM\OneToOne(mappedBy'livrable_version'cascade: ['persist''remove'])]
  23.     private ?VimeoVideo $vimeoVideo null;
  24.     #[ORM\ManyToOne(inversedBy'deliverableVersions')]
  25.     #[ORM\JoinColumn(nullablefalse)]
  26.     private ?ProjectDeliverable $deliverable null;
  27.     #[ORM\Column(typeTypes::TEXTnullabletrue)]
  28.     private ?string $description null;
  29.     #[ORM\Column(typeTypes::BOOLEANnullable:true)]
  30.     private ?bool $isVimeoComments null;
  31.     #[ORM\Column(typeTypes::BOOLEANnullable:true)]
  32.     private ?bool $isValidate null;
  33.     #[ORM\Column(typeTypes::TEXTnullabletrue)]
  34.     private ?string $remarques null;
  35.     #[ORM\Column]
  36.     private ?int $version_number null;
  37.     #[ORM\OneToMany(mappedBy'idVersion'targetEntityLogs::class, cascade:['remove'])]
  38.     #[ORM\OrderBy(['createdAt'=>'DESC'])]
  39.     private Collection $logs;
  40.     public function __construct()
  41.     {
  42.         $this->logs = new ArrayCollection();
  43.     }
  44.     public function getId(): ?int
  45.     {
  46.         return $this->id;
  47.     }
  48.     public function getTitle(): ?string
  49.     {
  50.         return $this->title;
  51.     }
  52.     public function setTitle(string $title): self
  53.     {
  54.         $this->title $title;
  55.         return $this;
  56.     }
  57.     public function getStatus(): ?Status
  58.     {
  59.         return $this->status;
  60.     }
  61.     public function setStatus(?Status $status): self
  62.     {
  63.         $this->status $status;
  64.         return $this;
  65.     }
  66.     public function getCreatedAt(): ?\DateTimeInterface
  67.     {
  68.         return $this->createdAt;
  69.     }
  70.     public function setCreatedAt(?\DateTimeInterface $createdAt): self
  71.     {
  72.         $this->createdAt $createdAt;
  73.         return $this;
  74.     }
  75.     public function getVimeoVideo(): ?VimeoVideo
  76.     {
  77.         return $this->vimeoVideo;
  78.     }
  79.     public function setVimeoVideo(VimeoVideo $vimeoVideo): self
  80.     {
  81.         // set the owning side of the relation if necessary
  82.         if ($vimeoVideo->getLivrableVersion() !== $this) {
  83.             $vimeoVideo->setLivrableVersion($this);
  84.         }
  85.         $this->vimeoVideo $vimeoVideo;
  86.         return $this;
  87.     }
  88.     public function getDeliverable(): ?ProjectDeliverable
  89.     {
  90.         return $this->deliverable;
  91.     }
  92.     public function setDeliverable(?ProjectDeliverable $deliverable): self
  93.     {
  94.         $this->deliverable $deliverable;
  95.         return $this;
  96.     }
  97.     public function getDescription(): ?string
  98.     {
  99.         return $this->description;
  100.     }
  101.     public function setDescription(?string $description): self
  102.     {
  103.         $this->description $description;
  104.         return $this;
  105.     }
  106.     public function isIsVimeoComments(): ?bool
  107.     {
  108.         return $this->isVimeoComments;
  109.     }
  110.     public function setIsVimeoComments(bool $isVimeoComments): self
  111.     {
  112.         $this->isVimeoComments $isVimeoComments;
  113.         return $this;
  114.     }
  115.     public function isIsValidate(): ?bool
  116.     {
  117.         return $this->isValidate;
  118.     }
  119.     public function setIsValidate(bool $isValidate): self
  120.     {
  121.         $this->isValidate $isValidate;
  122.         return $this;
  123.     }
  124.     public function getRemarques(): ?string
  125.     {
  126.         return $this->remarques;
  127.     }
  128.     public function setRemarques(?string $remarques): self
  129.     {
  130.         $this->remarques $remarques;
  131.         return $this;
  132.     }
  133.     public function getVersionNumber(): ?int
  134.     {
  135.         return $this->version_number;
  136.     }
  137.     public function setVersionNumber(int $version_number): self
  138.     {
  139.         $this->version_number $version_number;
  140.         return $this;
  141.     }
  142.     /**
  143.      * @return Collection<int, Logs>
  144.      */
  145.     public function getLogs(): Collection
  146.     {
  147.         return $this->logs;
  148.     }
  149.     public function addLog(Logs $log): self
  150.     {
  151.         if (!$this->logs->contains($log)) {
  152.             $this->logs->add($log);
  153.             $log->setIdVersion($this);
  154.         }
  155.         return $this;
  156.     }
  157.     public function removeLog(Logs $log): self
  158.     {
  159.         if ($this->logs->removeElement($log)) {
  160.             // set the owning side to null (unless already changed)
  161.             if ($log->getIdVersion() === $this) {
  162.                 $log->setIdVersion(null);
  163.             }
  164.         }
  165.         return $this;
  166.     }
  167. }