src/Entity/VimeoVideo.php line 10

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\VimeoVideoRepository;
  4. use Doctrine\DBAL\Types\Types;
  5. use Doctrine\ORM\Mapping as ORM;
  6. #[ORM\Entity(repositoryClassVimeoVideoRepository::class)]
  7. class VimeoVideo
  8. {
  9.     #[ORM\Id]
  10.     #[ORM\GeneratedValue]
  11.     #[ORM\Column]
  12.     private ?int $id null;
  13.     #[ORM\Column(typeTypes::TEXT)]
  14.     private ?string $title null;
  15.     #[ORM\Column(typeTypes::TEXT)]
  16.     private ?string $preview_image null;
  17.     #[ORM\Column(typeTypes::TEXT)]
  18.     private ?string $link null;
  19.     #[ORM\OneToOne(inversedBy'vimeoVideo'cascade: ['persist''remove'])]
  20.     #[ORM\JoinColumn(nullablefalse)]
  21.     private ?DeliverableVersions $livrable_version null;
  22.     public function getId(): ?int
  23.     {
  24.         return $this->id;
  25.     }
  26.     public function getTitle(): ?string
  27.     {
  28.         return $this->title;
  29.     }
  30.     public function setTitle(string $title): self
  31.     {
  32.         $this->title $title;
  33.         return $this;
  34.     }
  35.     public function getPreviewImage(): ?string
  36.     {
  37.         return $this->preview_image;
  38.     }
  39.     public function setPreviewImage(string $preview_image): self
  40.     {
  41.         $this->preview_image $preview_image;
  42.         return $this;
  43.     }
  44.     public function getLink(): ?string
  45.     {
  46.         return $this->link;
  47.     }
  48.     public function setLink(string $link): self
  49.     {
  50.         $this->link $link;
  51.         return $this;
  52.     }
  53.     public function getLivrableVersion(): ?DeliverableVersions
  54.     {
  55.         return $this->livrable_version;
  56.     }
  57.     public function setLivrableVersion(DeliverableVersions $livrable_version): self
  58.     {
  59.         $this->livrable_version $livrable_version;
  60.         return $this;
  61.     }
  62. }