src/Entity/Pfonction.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\PfonctionRepository;
  4. use Doctrine\Common\Collections\ArrayCollection;
  5. use Doctrine\Common\Collections\Collection;
  6. use Doctrine\ORM\Mapping as ORM;
  7. #[ORM\Entity(repositoryClassPfonctionRepository::class)]
  8. class Pfonction
  9. {
  10.     #[ORM\Id]
  11.     #[ORM\GeneratedValue]
  12.     #[ORM\Column]
  13.     private ?int $id null;
  14.     #[ORM\Column(length255)]
  15.     private ?string $code null;
  16.     #[ORM\Column(length255)]
  17.     private ?string $Designation null;
  18.     #[ORM\Column(length255)]
  19.     private ?string $corps null;
  20.     #[ORM\OneToMany(mappedBy'fonctionid'targetEntityLContract::class)]
  21.     private Collection $lContracts;
  22.     public function __construct()
  23.     {
  24.         $this->lContracts = new ArrayCollection();
  25.     }
  26.     public function getId(): ?int
  27.     {
  28.         return $this->id;
  29.     }
  30.     public function getCode(): ?string
  31.     {
  32.         return $this->code;
  33.     }
  34.     public function setCode(string $code): self
  35.     {
  36.         $this->code $code;
  37.         return $this;
  38.     }
  39.     public function getDesignation(): ?string
  40.     {
  41.         return $this->Designation;
  42.     }
  43.     public function setDesignation(string $Designation): self
  44.     {
  45.         $this->Designation $Designation;
  46.         return $this;
  47.     }
  48.     public function getCorps(): ?string
  49.     {
  50.         return $this->corps;
  51.     }
  52.     public function setCorps(string $corps): self
  53.     {
  54.         $this->corps $corps;
  55.         return $this;
  56.     }
  57.     /**
  58.      * @return Collection<int, LContract>
  59.      */
  60.     public function getLContracts(): Collection
  61.     {
  62.         return $this->lContracts;
  63.     }
  64.     public function addLContract(LContract $lContract): static
  65.     {
  66.         if (!$this->lContracts->contains($lContract)) {
  67.             $this->lContracts->add($lContract);
  68.             $lContract->setFonctionid($this);
  69.         }
  70.         return $this;
  71.     }
  72.     public function removeLContract(LContract $lContract): static
  73.     {
  74.         if ($this->lContracts->removeElement($lContract)) {
  75.             // set the owning side to null (unless already changed)
  76.             if ($lContract->getFonctionid() === $this) {
  77.                 $lContract->setFonctionid(null);
  78.             }
  79.         }
  80.         return $this;
  81.     }
  82. }