src/Entity/ContratController.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\ContratControllerRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. /**
  6.  * @ORM\Entity(repositoryClass=ContratControllerRepository::class)
  7.  */
  8. class ContratController
  9. {
  10.     /**
  11.      * @ORM\Id
  12.      * @ORM\GeneratedValue
  13.      * @ORM\Column(type="integer")
  14.      */
  15.     private $id;
  16.     /**
  17.      * @ORM\ManyToOne(targetEntity=Inscrit::class, inversedBy="contratControllers")
  18.      */
  19.     private $inscrit;
  20.     public function getId(): ?int
  21.     {
  22.         return $this->id;
  23.     }
  24.     public function getInscrit(): ?Inscrit
  25.     {
  26.         return $this->inscrit;
  27.     }
  28.     public function setInscrit(?Inscrit $inscrit): self
  29.     {
  30.         $this->inscrit $inscrit;
  31.         return $this;
  32.     }
  33. }