src/Entity/Villes.php line 13

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\VillesRepository;
  4. use Doctrine\Common\Collections\ArrayCollection;
  5. use Doctrine\Common\Collections\Collection;
  6. use Doctrine\ORM\Mapping as ORM;
  7. /**
  8.  * @ORM\Entity(repositoryClass=VillesRepository::class)
  9.  */
  10. class Villes
  11. {
  12.     /**
  13.      * @ORM\Id
  14.      * @ORM\GeneratedValue
  15.      * @ORM\Column(type="integer")
  16.      */
  17.     private $id;
  18.     /**
  19.      * @ORM\Column(type="string", length=255, nullable=true)
  20.      */
  21.     private $VilleNomReel;
  22.     /**
  23.      * @ORM\Column(type="string", length=255, nullable=true)
  24.      */
  25.     private $VilleNom;
  26.     /**
  27.      * @ORM\Column(type="string", length=255, nullable=true)
  28.      */
  29.     private $VilleCodePostal;
  30.     /**
  31.      * @ORM\Column(type="string", length=255, nullable=true)
  32.      */
  33.     private $VilleLongitudeDeg;
  34.     /**
  35.      * @ORM\Column(type="string", length=255, nullable=true)
  36.      */
  37.     private $VilleLatitudeDeg;
  38.     /**
  39.      * @ORM\Column(type="string", length=255, nullable=true)
  40.      */
  41.     private $VilleSlug;
  42.     /**
  43.      * @ORM\ManyToOne(targetEntity=Departements::class, inversedBy="villes")
  44.      */
  45.     private $Departements;
  46.     /**
  47.      * @ORM\OneToMany(targetEntity=Alertes::class, mappedBy="Villes")
  48.      */
  49.     private $alertes;
  50.     /**
  51.      * @ORM\OneToMany(targetEntity=Annonces::class, mappedBy="Villes")
  52.      */
  53.     private $annonces;
  54.     /**
  55.      * @ORM\OneToMany(targetEntity=User::class, mappedBy="Villes")
  56.      */
  57.     private $users;
  58.     public function __construct()
  59.     {
  60.         $this->alertes = new ArrayCollection();
  61.         $this->annonces = new ArrayCollection();
  62.         $this->users = new ArrayCollection();
  63.     }
  64.     public function getId(): ?int
  65.     {
  66.         return $this->id;
  67.     }
  68.     public function getVilleNomReel(): ?string
  69.     {
  70.         return $this->VilleNomReel;
  71.     }
  72.     public function setVilleNomReel(?string $VilleNomReel): self
  73.     {
  74.         $this->VilleNomReel $VilleNomReel;
  75.         return $this;
  76.     }
  77.     public function getVilleNom(): ?string
  78.     {
  79.         return $this->VilleNom;
  80.     }
  81.     public function setVilleNom(?string $VilleNom): self
  82.     {
  83.         $this->VilleNom $VilleNom;
  84.         return $this;
  85.     }
  86.     public function getVilleCodePostal(): ?string
  87.     {
  88.         return $this->VilleCodePostal;
  89.     }
  90.     public function setVilleCodePostal(?string $VilleCodePostal): self
  91.     {
  92.         $this->VilleCodePostal $VilleCodePostal;
  93.         return $this;
  94.     }
  95.     public function getVilleLongitudeDeg(): ?string
  96.     {
  97.         return $this->VilleLongitudeDeg;
  98.     }
  99.     public function setVilleLongitudeDeg(?string $VilleLongitudeDeg): self
  100.     {
  101.         $this->VilleLongitudeDeg $VilleLongitudeDeg;
  102.         return $this;
  103.     }
  104.     public function getVilleLatitudeDeg(): ?string
  105.     {
  106.         return $this->VilleLatitudeDeg;
  107.     }
  108.     public function setVilleLatitudeDeg(?string $VilleLatitudeDeg): self
  109.     {
  110.         $this->VilleLatitudeDeg $VilleLatitudeDeg;
  111.         return $this;
  112.     }
  113.     public function getVilleSlug(): ?string
  114.     {
  115.         return $this->VilleSlug;
  116.     }
  117.     public function setVilleSlug(?string $VilleSlug): self
  118.     {
  119.         $this->VilleSlug $VilleSlug;
  120.         return $this;
  121.     }
  122.     public function getDepartements(): ?Departements
  123.     {
  124.         return $this->Departements;
  125.     }
  126.     public function setDepartements(?Departements $Departements): self
  127.     {
  128.         $this->Departements $Departements;
  129.         return $this;
  130.     }
  131.     /**
  132.      * @return Collection<int, Alertes>
  133.      */
  134.     public function getAlertes(): Collection
  135.     {
  136.         return $this->alertes;
  137.     }
  138.     public function addAlerte(Alertes $alerte): self
  139.     {
  140.         if (!$this->alertes->contains($alerte)) {
  141.             $this->alertes[] = $alerte;
  142.             $alerte->setVilles($this);
  143.         }
  144.         return $this;
  145.     }
  146.     public function removeAlerte(Alertes $alerte): self
  147.     {
  148.         if ($this->alertes->removeElement($alerte)) {
  149.             // set the owning side to null (unless already changed)
  150.             if ($alerte->getVilles() === $this) {
  151.                 $alerte->setVilles(null);
  152.             }
  153.         }
  154.         return $this;
  155.     }
  156.     /**
  157.      * @return Collection<int, Annonces>
  158.      */
  159.     public function getAnnonces(): Collection
  160.     {
  161.         return $this->annonces;
  162.     }
  163.     public function addAnnonce(Annonces $annonce): self
  164.     {
  165.         if (!$this->annonces->contains($annonce)) {
  166.             $this->annonces[] = $annonce;
  167.             $annonce->setVilles($this);
  168.         }
  169.         return $this;
  170.     }
  171.     public function removeAnnonce(Annonces $annonce): self
  172.     {
  173.         if ($this->annonces->removeElement($annonce)) {
  174.             // set the owning side to null (unless already changed)
  175.             if ($annonce->getVilles() === $this) {
  176.                 $annonce->setVilles(null);
  177.             }
  178.         }
  179.         return $this;
  180.     }
  181.     /**
  182.      * @return Collection<int, User>
  183.      */
  184.     public function getUsers(): Collection
  185.     {
  186.         return $this->users;
  187.     }
  188.     public function addUser(User $user): self
  189.     {
  190.         if (!$this->users->contains($user)) {
  191.             $this->users[] = $user;
  192.             $user->setVilles($this);
  193.         }
  194.         return $this;
  195.     }
  196.     public function removeUser(User $user): self
  197.     {
  198.         if ($this->users->removeElement($user)) {
  199.             // set the owning side to null (unless already changed)
  200.             if ($user->getVilles() === $this) {
  201.                 $user->setVilles(null);
  202.             }
  203.         }
  204.         return $this;
  205.     }
  206. }