src/Entity/PArretTravail.php line 12

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\PArretTravailRepository;
  4. use Doctrine\Common\Collections\ArrayCollection;
  5. use Doctrine\Common\Collections\Collection;
  6. use Doctrine\DBAL\Types\Types;
  7. use Doctrine\ORM\Mapping as ORM;
  8. #[ORM\Entity(repositoryClassPArretTravailRepository::class)]
  9. class PArretTravail
  10. {
  11.     #[ORM\Id]
  12.     #[ORM\GeneratedValue]
  13.     #[ORM\Column]
  14.     private ?int $id null;
  15.     #[ORM\ManyToOne(inversedBy'arretTravails')]
  16.     private ?LContract $contract null;
  17.     #[ORM\Column(typeTypes::DATETIME_MUTABLEnullabletrue)]
  18.     private ?\DateTimeInterface $DateDebut null;
  19.     #[ORM\Column(typeTypes::DATETIME_MUTABLEnullabletrue)]
  20.     private ?\DateTimeInterface $dateFin null;
  21.     #[ORM\Column(typeTypes::DATETIME_MUTABLEnullabletrue)]
  22.     private ?\DateTimeInterface $dateReprise null;
  23.     #[ORM\Column(nullabletrue)]
  24.     private ?bool $active true;
  25.     #[ORM\ManyToOne(inversedBy'arretTravails')]
  26.     private ?PMotif $motif null;
  27.     #[ORM\OneToMany(mappedBy'arretTravail'targetEntityPArretTravailLg::class)]
  28.     private Collection $arretTravailLgs;
  29.     #[ORM\ManyToOne]
  30.     private ?Users $userCreated null;
  31.     public function __construct()
  32.     {
  33.         $this->arretTravailLgs = new ArrayCollection();
  34.     }
  35.     public function getId(): ?int
  36.     {
  37.         return $this->id;
  38.     }
  39.     public function getContract(): ?LContract
  40.     {
  41.         return $this->contract;
  42.     }
  43.     public function setContract(?LContract $contract): self
  44.     {
  45.         $this->contract $contract;
  46.         return $this;
  47.     }
  48.     public function getDateDebut(): ?\DateTimeInterface
  49.     {
  50.         return $this->DateDebut;
  51.     }
  52.     public function setDateDebut(?\DateTimeInterface $DateDebut): self
  53.     {
  54.         $this->DateDebut $DateDebut;
  55.         return $this;
  56.     }
  57.     public function getDateFin(): ?\DateTimeInterface
  58.     {
  59.         return $this->dateFin;
  60.     }
  61.     public function setDateFin(?\DateTimeInterface $dateFin): self
  62.     {
  63.         $this->dateFin $dateFin;
  64.         return $this;
  65.     }
  66.     public function getDateReprise(): ?\DateTimeInterface
  67.     {
  68.         return $this->dateReprise;
  69.     }
  70.     public function setDateReprise(?\DateTimeInterface $dateReprise): self
  71.     {
  72.         $this->dateReprise $dateReprise;
  73.         return $this;
  74.     }
  75.     public function isActive(): ?bool
  76.     {
  77.         return $this->active;
  78.     }
  79.     public function setActive(?bool $active): self
  80.     {
  81.         $this->active $active;
  82.         return $this;
  83.     }
  84.     public function getMotif(): ?PMotif
  85.     {
  86.         return $this->motif;
  87.     }
  88.     public function setMotif(?PMotif $motif): self
  89.     {
  90.         $this->motif $motif;
  91.         return $this;
  92.     }
  93.     /**
  94.      * @return Collection<int, PArretTravailLg>
  95.      */
  96.     public function getArretTravailLgs(): Collection
  97.     {
  98.         return $this->arretTravailLgs;
  99.     }
  100.     public function getActiveArretTravailLgs()
  101.     {
  102.         $array = [];
  103.         foreach ($this->arretTravailLgs as $key => $value) {
  104.             if($value->isActive()) {
  105.                 array_push($array$value);
  106.             }
  107.         }
  108.         return $array;
  109.     }
  110.     public function addArretTravailLg(PArretTravailLg $arretTravailLg): self
  111.     {
  112.         if (!$this->arretTravailLgs->contains($arretTravailLg)) {
  113.             $this->arretTravailLgs->add($arretTravailLg);
  114.             $arretTravailLg->setArretTravail($this);
  115.         }
  116.         return $this;
  117.     }
  118.     public function removeArretTravailLg(PArretTravailLg $arretTravailLg): self
  119.     {
  120.         if ($this->arretTravailLgs->removeElement($arretTravailLg)) {
  121.             // set the owning side to null (unless already changed)
  122.             if ($arretTravailLg->getArretTravail() === $this) {
  123.                 $arretTravailLg->setArretTravail(null);
  124.             }
  125.         }
  126.         return $this;
  127.     }
  128.     public function getUserCreated(): ?Users
  129.     {
  130.         return $this->userCreated;
  131.     }
  132.     public function setUserCreated(?Users $userCreated): static
  133.     {
  134.         $this->userCreated $userCreated;
  135.         return $this;
  136.     }
  137. }