src/Entity/Produit/ImageProduit.php line 10

Open in your IDE?
  1. <?php
  2. namespace App\Entity\Produit;
  3. use App\Repository\ImageProduitRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. use App\Entity\Produit\Produit;
  6. #[ORM\Entity(repositoryClassImageProduitRepository::class)]
  7. class ImageProduit
  8. {
  9.     #[ORM\Id]
  10.     #[ORM\GeneratedValue]
  11.     #[ORM\Column(type'integer')]
  12.     private $id;
  13.     #[ORM\ManyToOne(targetEntityProduit::class, inversedBy'imageProduits')]
  14.     #[ORM\JoinColumn(nullablefalse)]
  15.     private $produitImage;
  16.     #[ORM\Column(type'string'length400)]
  17.     private $image;
  18.     #[ORM\ManyToOne(inversedBy'imageProduits')]
  19.     private ?Couleur $color null;
  20.     public function getId(): ?int
  21.     {
  22.         return $this->id;
  23.     }
  24.     public function getProduitImage(): ?Produit
  25.     {
  26.         return $this->produitImage;
  27.     }
  28.     public function setProduitImage(?Produit $produitImage): self
  29.     {
  30.         $this->produitImage $produitImage;
  31.         return $this;
  32.     }
  33.     public function getImage(): ?string
  34.     {
  35.         return $this->image;
  36.     }
  37.     public function setImage(string $image): self
  38.     {
  39.         $this->image $image;
  40.         return $this;
  41.     }
  42.     public function getColor(): ?Couleur
  43.     {
  44.         return $this->color;
  45.     }
  46.     public function setColor(?Couleur $color): static
  47.     {
  48.         $this->color $color;
  49.         return $this;
  50.     }
  51. }