src/Entity/Files.php line 10

  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\FilesRepository;
  4. use Doctrine\DBAL\Types\Types;
  5. use Doctrine\ORM\Mapping as ORM;
  6. #[ORM\Entity(repositoryClassFilesRepository::class)]
  7. class Files
  8. {
  9.     const FILE_TYPE_DOCUMENT 1;
  10.     const FILE_TYPE_GALLERY 2;
  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\Column(typeTypes::TEXT)]
  18.     private ?string $filename null;
  19.     #[ORM\Column]
  20.     private ?int $type null;
  21.     public function getId(): ?int
  22.     {
  23.         return $this->id;
  24.     }
  25.     public function getTitle(): ?string
  26.     {
  27.         return $this->title;
  28.     }
  29.     public function setTitle(string $title): self
  30.     {
  31.         $this->title $title;
  32.         return $this;
  33.     }
  34.     public function getFilename(): ?string
  35.     {
  36.         return $this->filename;
  37.     }
  38.     public function setFilename(string $filename): self
  39.     {
  40.         $this->filename $filename;
  41.         return $this;
  42.     }
  43.     public function getType(): ?int
  44.     {
  45.         return $this->type;
  46.     }
  47.     public function setType(int $type): self
  48.     {
  49.         $this->type $type;
  50.         return $this;
  51.     }
  52. }