src/Entity/AvisClient.php line 10

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\AvisClientRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. use App\Entity\Produit\Produit;
  6. #[ORM\Entity(repositoryClassAvisClientRepository::class)]
  7. class AvisClient
  8. {
  9.     #[ORM\Id]
  10.     #[ORM\GeneratedValue]
  11.     #[ORM\Column(type'integer')]
  12.     private $id;
  13.     #[ORM\Column(type'string'length255)]
  14.     private $name;
  15.     #[ORM\Column(type'integer')]
  16.     private $age;
  17.     #[ORM\Column(type'string'length255)]
  18.     private $descriptions;
  19.     #[ORM\Column(type'float')]
  20.     private $note;
  21.     #[ORM\ManyToOne(targetEntityProduit::class, inversedBy'avisClients')]
  22.     private $produit;
  23.     #[ORM\Column(type'string'length255nullabletrue)]
  24.     private $image;
  25.     public function getId(): ?int
  26.     {
  27.         return $this->id;
  28.     }
  29.     public function getName(): ?string
  30.     {
  31.         return $this->name;
  32.     }
  33.     public function setName(string $name): self
  34.     {
  35.         $this->name $name;
  36.         return $this;
  37.     }
  38.     public function getAge(): ?int
  39.     {
  40.         return $this->age;
  41.     }
  42.     public function setAge(int $age): self
  43.     {
  44.         $this->age $age;
  45.         return $this;
  46.     }
  47.     public function getDescriptions(): ?string
  48.     {
  49.         return $this->descriptions;
  50.     }
  51.     public function setDescriptions(string $descriptions): self
  52.     {
  53.         $this->descriptions $descriptions;
  54.         return $this;
  55.     }
  56.     public function getNote(): ?float
  57.     {
  58.         return $this->note;
  59.     }
  60.     public function setNote(float $note): self
  61.     {
  62.         $this->note $note;
  63.         return $this;
  64.     }
  65.     public function getProduit(): ?Produit
  66.     {
  67.         return $this->produit;
  68.     }
  69.     public function setProduit(?Produit $produit): self
  70.     {
  71.         $this->produit $produit;
  72.         return $this;
  73.     }
  74.     public function getImage(): ?string
  75.     {
  76.         return $this->image;
  77.     }
  78.     public function setImage(string $image): self
  79.     {
  80.         $this->image $image;
  81.         return $this;
  82.     }
  83. }