src/Entity/Post.php line 16

  1. <?php
  2. namespace App\Entity;
  3. use ApiPlatform\Metadata\ApiResource;
  4. use App\Repository\PostRepository;
  5. use Doctrine\DBAL\Types\Types;
  6. use Doctrine\ORM\Mapping as ORM;
  7. use Symfony\Component\HttpFoundation\File\File;
  8. use Symfony\Component\Validator\Constraints as Assert;
  9. use Vich\UploaderBundle\Mapping\Annotation as Vich;
  10. #[ORM\Entity(repositoryClassPostRepository::class)]
  11. #[ApiResource]
  12. #[Vich\Uploadable]
  13. class Post
  14. {
  15.     #[ORM\Id]
  16.     #[ORM\GeneratedValue]
  17.     #[ORM\Column]
  18.     private ?int $id null;
  19.     #[ORM\Column(length255)]
  20.     private ?string $title null;
  21.     #[ORM\Column(typeTypes::TEXT)]
  22.     private ?string $description null;
  23.     #[ORM\Column(length255nullabletrue)]
  24.     private ?string $image null;
  25.     
  26.     #[Vich\UploadableField(mapping"post_image"fileNameProperty"image")]
  27.     private ?File $imageFile null;
  28.     #[ORM\Column(typeTypes::DATETIME_MUTABLE)]
  29.     private ?\DateTimeInterface $datePosting null;
  30.     public function __construct()
  31.     {
  32.         $this->datePosting = new \DateTime();
  33.     }
  34.     public function getId(): ?int
  35.     {
  36.         return $this->id;
  37.     }
  38.     public function getTitle(): ?string
  39.     {
  40.         return $this->title;
  41.     }
  42.     public function setTitle(string $title): static
  43.     {
  44.         $this->title $title;
  45.         return $this;
  46.     }
  47.     public function getDescription(): ?string
  48.     {
  49.         return $this->description;
  50.     }
  51.     public function setDescription(string $description): static
  52.     {
  53.         $this->description $description;
  54.         return $this;
  55.     }
  56.     public function getImage(): ?string
  57.     {
  58.         return $this->image;
  59.     }
  60.     public function setImage(string $image): static
  61.     {
  62.         $this->image $image;
  63.         return $this;
  64.     }
  65.     public function getDatePosting(): ?\DateTimeInterface
  66.     {
  67.         return $this->datePosting;
  68.     }
  69.     public function setDatePosting(\DateTimeInterface $datePosting): static
  70.     {
  71.         $this->datePosting $datePosting;
  72.         return $this;
  73.     }
  74.     
  75.     public function getImageFile(): ?File
  76.     {
  77.         return $this->imageFile;
  78.     }
  79.     public function setImageFile(?File $imageFile): void
  80.     {
  81.         $this->imageFile $imageFile;
  82.     }
  83. }