src/Entity/Provincias.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\ProvinciasRepository;
  4. use Doctrine\Common\Collections\ArrayCollection;
  5. use Doctrine\Common\Collections\Collection;
  6. use Doctrine\ORM\Mapping as ORM;
  7. #[ORM\Entity(repositoryClassProvinciasRepository::class)]
  8. class Provincias
  9. {
  10.     #[ORM\Id]
  11.     #[ORM\GeneratedValue]
  12.     #[ORM\Column]
  13.     private ?int $id null;
  14.     #[ORM\Column(length100)]
  15.     private ?string $nombre null;
  16.     #[ORM\OneToMany(mappedBy'idprovincia'targetEntityPoblaciones::class, cascade: ['persist''remove'])]
  17.     private Collection $poblaciones;
  18.     #[ORM\Column(length2)]
  19.     private ?string $prefijo null;
  20.     public function __construct()
  21.     {
  22.         $this->poblaciones = new ArrayCollection();
  23.     }
  24.     public function getId(): ?int
  25.     {
  26.         return $this->id;
  27.     }
  28.     public function getNombre(): ?string
  29.     {
  30.         return $this->nombre;
  31.     }
  32.     public function setNombre(string $nombre): static
  33.     {
  34.         $this->nombre $nombre;
  35.         return $this;
  36.     }
  37.     /**
  38.      * @return Collection<int, Poblaciones>
  39.      */
  40.     public function getPoblaciones(): Collection
  41.     {
  42.         return $this->poblaciones;
  43.     }
  44.     public function addPoblacione(Poblaciones $poblacione): static
  45.     {
  46.         if (!$this->poblaciones->contains($poblacione)) {
  47.             $this->poblaciones->add($poblacione);
  48.             $poblacione->setIdprovincia($this);
  49.         }
  50.         return $this;
  51.     }
  52.     public function removePoblacione(Poblaciones $poblacione): static
  53.     {
  54.         if ($this->poblaciones->removeElement($poblacione)) {
  55.             // set the owning side to null (unless already changed)
  56.             if ($poblacione->getIdprovincia() === $this) {
  57.                 $poblacione->setIdprovincia(null);
  58.             }
  59.         }
  60.         return $this;
  61.     }
  62.     public function getPrefijo(): ?string
  63.     {
  64.         return $this->prefijo;
  65.     }
  66.     public function setPrefijo(string $prefijo): static
  67.     {
  68.         $this->prefijo $prefijo;
  69.         return $this;
  70.     }
  71. }