src/Entity/Activite.php line 12

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\ActiviteRepository;
  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(repositoryClassActiviteRepository::class)]
  9. class Activite
  10. {
  11.     #[ORM\Id]
  12.     #[ORM\GeneratedValue]
  13.     #[ORM\Column]
  14.     private ?int $id null;
  15.     #[ORM\Column(length255)]
  16.     private ?string $Typeactivite null;
  17.     #[ORM\Column(length255nullabletrue)]
  18.     private ?string $themeactivite null;
  19.     #[ORM\Column(length255nullabletrue)]
  20.     private ?string $objectifactivite null;
  21.     #[ORM\Column(length255nullabletrue)]
  22.     private ?string $impactactivite null;
  23.     #[ORM\Column(length255nullabletrue)]
  24.     private ?string $programmeid null;
  25.     #[ORM\ManyToMany(targetEntityMembre::class, mappedBy'activite'cascade:["persist"])]
  26.     private Collection $membres;
  27.     #[ORM\ManyToOne(inversedBy'activites')]
  28.     private ?NomActivite $nomactivite null;
  29.     #[ORM\Column(length255)]
  30.     private ?string $inscription null;
  31.     #[ORM\Column(length255nullabletrue)]
  32.     private ?string $trancheage null;
  33.     #[ORM\Column(typeTypes::DATE_MUTABLEnullabletrue)]
  34.     private ?\DateTimeInterface $dateactivite null;
  35.     public function __construct()
  36.     {
  37.         $this->membres = new ArrayCollection();
  38.     }
  39.     public function getId(): ?int
  40.     {
  41.         return $this->id;
  42.     }
  43.     public function getTypeactivite(): ?string
  44.     {
  45.         return $this->Typeactivite;
  46.     }
  47.     public function setTypeactivite(string $Typeactivite): self
  48.     {
  49.         $this->Typeactivite $Typeactivite;
  50.         return $this;
  51.     }
  52.     
  53.     public function getThemeactivite(): ?string
  54.     {
  55.         return $this->themeactivite;
  56.     }
  57.     public function setThemeactivite(?string $themeactivite): self
  58.     {
  59.         $this->themeactivite $themeactivite;
  60.         return $this;
  61.     }
  62.     public function getObjectifactivite(): ?string
  63.     {
  64.         return $this->objectifactivite;
  65.     }
  66.     public function setObjectifactivite(?string $objectifactivite): self
  67.     {
  68.         $this->objectifactivite $objectifactivite;
  69.         return $this;
  70.     }
  71.     public function getImpactactivite(): ?string
  72.     {
  73.         return $this->impactactivite;
  74.     }
  75.     public function setImpactactivite(?string $impactactivite): self
  76.     {
  77.         $this->impactactivite $impactactivite;
  78.         return $this;
  79.     }
  80.     public function getProgrammeid(): ?string
  81.     {
  82.         return $this->programmeid;
  83.     }
  84.     public function setProgrammeid(?string $programmeid): self
  85.     {
  86.         $this->programmeid $programmeid;
  87.         return $this;
  88.     }
  89.     /**
  90.      * @return Collection<int, Membre>
  91.      */
  92.     public function getMembres(): Collection
  93.     {
  94.         return $this->membres;
  95.     }
  96.     public function addMembre(Membre $membre): self
  97.     {
  98.         if (!$this->membres->contains($membre)) {
  99.             $this->membres->add($membre);
  100.             $membre->addActivite($this);
  101.         }
  102.         return $this;
  103.     }
  104.     public function removeMembre(Membre $membre): self
  105.     {
  106.         if ($this->membres->removeElement($membre)) {
  107.             $membre->removeActivite($this);
  108.         }
  109.         return $this;
  110.     }
  111.     public function getNomactivite(): ?NomActivite
  112.     {
  113.         return $this->nomactivite;
  114.     }
  115.     public function setNomactivite(?NomActivite $nomactivite): self
  116.     {
  117.         $this->nomactivite $nomactivite;
  118.         return $this;
  119.     }
  120.     public function getInscription(): ?string
  121.     {
  122.         return $this->inscription;
  123.     }
  124.     public function setInscription(string $inscription): self
  125.     {
  126.         $this->inscription $inscription;
  127.         return $this;
  128.     }
  129.     public function getTrancheage(): ?string
  130.     {
  131.         return $this->trancheage;
  132.     }
  133.     public function setTrancheage(?string $trancheage): self
  134.     {
  135.         $this->trancheage $trancheage;
  136.         return $this;
  137.     }
  138.     public function getDateactivite(): ?\DateTimeInterface
  139.     {
  140.         return $this->dateactivite;
  141.     }
  142.     public function setDateactivite(?\DateTimeInterface $dateactivite): self
  143.     {
  144.         $this->dateactivite $dateactivite;
  145.         return $this;
  146.     }
  147.     
  148. }