src/Entity/Protocoleinstrimg.php line 9

  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\ProtocoleinstrimgRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. #[ORM\Entity(repositoryClassProtocoleinstrimgRepository::class)]
  6. class Protocoleinstrimg
  7. {
  8.     #[ORM\Id]
  9.     #[ORM\GeneratedValue]
  10.     #[ORM\Column]
  11.     private ?int $id null;
  12.     #[ORM\Column]
  13.     private ?int $ordre null;
  14.     #[ORM\ManyToOne(inversedBy'protocoleinstrimgs')]
  15.     private ?Protocole $protocole null;
  16.     #[ORM\ManyToOne]
  17.     private ?Image $image null;
  18.     public function getId(): ?int
  19.     {
  20.         return $this->id;
  21.     }
  22.     public function getOrdre(): ?int
  23.     {
  24.         return $this->ordre;
  25.     }
  26.     public function setOrdre(int $ordre): self
  27.     {
  28.         $this->ordre $ordre;
  29.         return $this;
  30.     }
  31.     public function getProtocole(): ?Protocole
  32.     {
  33.         return $this->protocole;
  34.     }
  35.     public function setProtocole(?Protocole $protocole): self
  36.     {
  37.         $this->protocole $protocole;
  38.         return $this;
  39.     }
  40.     public function getImage(): ?Image
  41.     {
  42.         return $this->image;
  43.     }
  44.     public function setImage(?Image $image): self
  45.     {
  46.         $this->image $image;
  47.         return $this;
  48.     }
  49. }