src/Entity/ImagePath.php line 10

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\ImagePathRepository;
  4. use Doctrine\DBAL\Types\Types;
  5. use Doctrine\ORM\Mapping as ORM;
  6. #[ORM\Entity(repositoryClassImagePathRepository::class)]
  7. class ImagePath
  8. {
  9.     #[ORM\Id]
  10.     #[ORM\GeneratedValue]
  11.     #[ORM\Column]
  12.     private ?int $id null;
  13.     #[ORM\Column(length255)]
  14.     private ?string $path null;
  15.     #[ORM\Column(length255nullabletrue)]
  16.     private ?string $title null;
  17.     #[ORM\ManyToOne(inversedBy'images')]
  18.     #[ORM\JoinColumn(nullablefalse)]
  19.     private ?Product $product null;
  20.     #[ORM\Column(typeTypes::SMALLINTnullablefalse)]
  21.     private ?int $number;
  22.     public function getId(): ?int
  23.     {
  24.         return $this->id;
  25.     }
  26.     public function getPath(): ?string
  27.     {
  28.         return $this->path;
  29.     }
  30.     public function setPath(string $path): self
  31.     {
  32.         $this->path $path;
  33.         return $this;
  34.     }
  35.     public function getTitle(): ?string
  36.     {
  37.         return $this->title;
  38.     }
  39.     public function setTitle(?string $title): self
  40.     {
  41.         $this->title $title;
  42.         return $this;
  43.     }
  44.     public function getProduct(): ?Product
  45.     {
  46.         return $this->product;
  47.     }
  48.     public function setProduct(?Product $product): self
  49.     {
  50.         $this->product $product;
  51.         return $this;
  52.     }
  53.     public function getNumber(): int
  54.     {
  55.         return $this->number;
  56.     }
  57.     public function setNumber(int $number): static
  58.     {
  59.         $this->number $number;
  60.         return $this;
  61.     }
  62. }