src/Entity/Materielphoto.php line 9

  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\MaterielphotoRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. #[ORM\Entity(repositoryClassMaterielphotoRepository::class)]
  6. class Materielphoto
  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'materielphotos')]
  15.     private ?Materiel $materiel 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 getMateriel(): ?Materiel
  32.     {
  33.         return $this->materiel;
  34.     }
  35.     public function setMateriel(?Materiel $materiel): self
  36.     {
  37.         $this->materiel $materiel;
  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.     public function __toString(): string
  50.     {
  51.         return $this->image->getUrlfichier();
  52.     }
  53. }