src/Entity/Administration/Galery.php line 9

Open in your IDE?
  1. <?php
  2. namespace App\Entity\Administration;
  3. use App\Repository\Administration\GalleryRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. #[ORM\Entity(repositoryClassGalleryRepository::class)]
  6. class Galery
  7. {
  8.     #[ORM\Id]
  9.     #[ORM\GeneratedValue]
  10.     #[ORM\Column]
  11.     private ?int $id null;
  12.     #[ORM\Column(type'string')]
  13.     private string $fileName;
  14.     #[ORM\Column]
  15.     private ?bool $isActive null;
  16.     public function getId(): ?int
  17.     {
  18.         return $this->id;
  19.     }
  20.     public function setId(?int $id): self
  21.     {
  22.         $this->id $id;
  23.         return $this;
  24.     }
  25.     public function getFileName(): string
  26.     {
  27.         return $this->fileName;
  28.     }
  29.     public function setFileName(string $fileName): static
  30.     {
  31.         $this->fileName $fileName;
  32.         return $this;
  33.     }
  34.     public function isActive(): ?bool
  35.     {
  36.         return $this->isActive;
  37.     }
  38.     public function setActive(?bool $isActive): static
  39.     {
  40.         $this->isActive $isActive;
  41.         return $this;
  42.     }
  43. }