src/Entity/Product.php line 10

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\ProductRepository;
  4. use Doctrine\DBAL\Types\Types;
  5. use Doctrine\ORM\Mapping as ORM;
  6. #[ORM\Entity(repositoryClassProductRepository::class)]
  7. class Product
  8. {
  9.     #[ORM\Id]
  10.     #[ORM\GeneratedValue]
  11.     #[ORM\Column]
  12.     private ?int $id;
  13.     #[ORM\Column(length255)]
  14.     private ?string $name;
  15.     #[ORM\Column(length255)]
  16.     private ?string $slug null;
  17.     #[ORM\Column(length255)]
  18.     private ?string $illustration null;
  19.     #[ORM\Column(length255)]
  20.     private ?string $subtitle null;
  21.     #[ORM\Column(typeTypes::TEXT)]
  22.     private ?string $description null;
  23.     #[ORM\Column]
  24.     private ?float $price null;
  25.     #[ORM\ManyToOne(inversedBy'products')]
  26.     #[ORM\JoinColumn(nullablefalse)]
  27.     private ?Familly $category null;
  28.     #[ORM\Column]
  29.     private ?bool $isBest null;
  30.     
  31.     
  32.    
  33.     public function getId(): ?int
  34.     {
  35.         return $this->id;
  36.     }
  37.     public function getName(): ?string
  38.     {
  39.         return $this->name;
  40.     }
  41.     public function setName(string $name): self
  42.     {
  43.         $this->name $name;
  44.         return $this;
  45.     }
  46.     public function getSlug(): ?string
  47.     {
  48.         return $this->slug;
  49.     }
  50.     public function setSlug(string $slug): self
  51.     {
  52.         $this->slug $slug;
  53.         return $this;
  54.     }
  55.     public function getIllustration(): ?string
  56.     {
  57.         return $this->illustration;
  58.     }
  59.     public function setIllustration(string $illustration): self
  60.     {
  61.         $this->illustration $illustration;
  62.         return $this;
  63.     }
  64.     public function getSubtitle(): ?string
  65.     {
  66.         return $this->subtitle;
  67.     }
  68.     public function setSubtitle(string $subtitle): self
  69.     {
  70.         $this->subtitle $subtitle;
  71.         return $this;
  72.     }
  73.     public function getDescription(): ?string
  74.     {
  75.         return $this->description;
  76.     }
  77.     public function setDescription(string $description): self
  78.     {
  79.         $this->description $description;
  80.         return $this;
  81.     }
  82.     public function getPrice(): ?float
  83.     {
  84.         return $this->price;
  85.     }
  86.     public function setPrice(float $price): self
  87.     {
  88.         $this->price $price;
  89.         return $this;
  90.     }
  91.     public function getCategory(): ?Familly
  92.     {
  93.         return $this->category;
  94.     }
  95.     public function setCategory(?Familly $category): self
  96.     {
  97.         $this->category $category;
  98.         return $this;
  99.     }
  100.     public function getIsBest(): ?bool
  101.     {
  102.         return $this->isBest;
  103.     }
  104.     public function setIsBest(bool $isBest): self
  105.     {
  106.         $this->isBest $isBest;
  107.         return $this;
  108.     }
  109.     
  110. }