src/Entity/Photo.php line 13

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\PhotoRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. use Symfony\Component\HttpFoundation\File\File;
  6. use Vich\UploaderBundle\Mapping\Annotation as Vich;
  7. use DateTimeInterface;
  8. #[ORM\Entity(repositoryClassPhotoRepository::class)]
  9. #[Vich\Uploadable]
  10. class Photo
  11. {
  12.     #[ORM\Id]
  13.     #[ORM\GeneratedValue]
  14.     #[ORM\Column(type"integer")]
  15.     private $id;
  16.     #[ORM\Column(type"text"nullabletrue)]
  17.     private $description;
  18.     #[ORM\Column(type"string"length255)]
  19.     private $genre;
  20.     #[ORM\Column(type"string"length255nullabletrue)]
  21.     private $title;
  22.     #[ORM\Column(type"string"length255nullabletrue)]
  23.     private $path;
  24.     #[ORM\Column(type"integer"length7nullabletrue)]
  25.     private $price;
  26.     #[Vich\UploadableField(mapping"photos"fileNameProperty"path")]
  27.     private ?File $imageFile null;
  28.     #[ORM\Column(type"datetime"nullabletrue)]
  29.     private $updatedAt;
  30.     #[ORM\Column(type"datetime"nullabletrue)]
  31.     private $createdAt;
  32.     public function getId(): ?int
  33.     {
  34.         return $this->id;
  35.     }
  36.     public function getDescription(): ?string
  37.     {
  38.         return $this->description;
  39.     }
  40.     public function setDescription(string $description): self
  41.     {
  42.         $this->description $description;
  43.         return $this;
  44.     }
  45.     public function getGenre(): ?string
  46.     {
  47.         return $this->genre;
  48.     }
  49.     public function setGenre(string $genre): self
  50.     {
  51.         $this->genre $genre;
  52.         return $this;
  53.     }
  54.     public function getPath(): ?string
  55.     {
  56.         return $this->path;
  57.     }
  58.     public function setPath(?string $path): self
  59.     {
  60.         $this->path $path;
  61.         return $this;
  62.     }
  63.     public function getImageFile(): ?File
  64.     {
  65.         return $this->imageFile;
  66.     }
  67.     public function setImageFile(?File $imageFile null): self
  68.     {
  69.         $this->imageFile $imageFile;
  70.         if ($imageFile !== null) {
  71.             $this->updatedAt = new \DateTimeImmutable();
  72.         }
  73.         return $this;
  74.     }
  75.     public function getUpdatedAt(): ?\DateTimeInterface
  76.     {
  77.         return $this->updatedAt;
  78.     }
  79.     public function setUpdatedAt(?\DateTimeInterface $updatedAt): self
  80.     {
  81.         $this->updatedAt $updatedAt;
  82.         return $this;
  83.     }
  84.     public function getPrice(): ?int
  85.     {
  86.         return $this->price;
  87.     }
  88.     public function setPrice(?int $price): self
  89.     {
  90.         $this->price $price;
  91.         return $this;
  92.     }
  93.     public function getTitle(): ?string
  94.     {
  95.         return $this->title;
  96.     }
  97.     public function setTitle(?string $title): self
  98.     {
  99.         $this->title $title;
  100.         return $this;
  101.     }
  102.     public function getCreatedAt(): ?DateTimeInterface
  103.     {
  104.         return $this->createdAt;
  105.     }
  106.     public function setCreatedAt(?DateTimeInterface $createdAt): self
  107.     {
  108.         $this->createdAt $createdAt;
  109.         return $this;
  110.     }
  111. }