src/Entity/Media.php line 9

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\MediaRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. #[ORM\Entity(repositoryClassMediaRepository::class)]
  6. class Media
  7. {
  8.     #[ORM\Id]
  9.     #[ORM\GeneratedValue]
  10.     #[ORM\Column(type'integer')]
  11.     private $id;
  12.     #[ORM\Column(type'string'length255)]
  13.     private ?string $name null;
  14.     #[ORM\Column(type'string'length255)]
  15.     private ?string $type null;
  16.     #[ORM\Column(type'string'length255)]
  17.     private ?string $path null;
  18.     #[ORM\Column(type'integer')]
  19.     private ?int $size null;
  20.     #[ORM\Column(type'boolean'nullabletrue)]
  21.     private ?bool $hasWebp null;
  22.     #[ORM\Column(type'boolean'nullabletrue)]
  23.     private ?bool $hasWebm null;
  24.     #[ORM\Column(type'boolean'nullabletrue)]
  25.     private ?bool $hasThumb null;
  26.     public function getId(): ?int
  27.     {
  28.         return $this->id;
  29.     }
  30.     public function getName(): ?string
  31.     {
  32.         return $this->name;
  33.     }
  34.     public function setName(string $name): self
  35.     {
  36.         $this->name $name;
  37.         return $this;
  38.     }
  39.     public function getType(): ?string
  40.     {
  41.         return $this->type;
  42.     }
  43.     public function setType(string $type): self
  44.     {
  45.         $this->type $type;
  46.         return $this;
  47.     }
  48.     public function getPath(): ?string
  49.     {
  50.         return $this->path;
  51.     }
  52.     public function setPath(string $path): self
  53.     {
  54.         $this->path $path;
  55.         return $this;
  56.     }
  57.     public function getSize(): ?int
  58.     {
  59.         return $this->size;
  60.     }
  61.     public function setSize(int $size): self
  62.     {
  63.         $this->size $size;
  64.         return $this;
  65.     }
  66.     public function getHasWebp(): ?bool
  67.     {
  68.         return $this->hasWebp;
  69.     }
  70.     public function setHasWebp(?bool $hasWebp): self
  71.     {
  72.         $this->hasWebp $hasWebp;
  73.         return $this;
  74.     }
  75.     public function getHasWebm(): ?bool
  76.     {
  77.         return $this->hasWebm;
  78.     }
  79.     public function setHasWebm(?bool $hasWebm): self
  80.     {
  81.         $this->hasWebm $hasWebm;
  82.         return $this;
  83.     }
  84.     public function getHasThumb(): ?bool
  85.     {
  86.         return $this->hasThumb;
  87.     }
  88.     public function setHasThumb(?bool $hasThumb): self
  89.     {
  90.         $this->hasThumb $hasThumb;
  91.         return $this;
  92.     }
  93. }