<?php
namespace App\Entity;
use App\Repository\ProvinciasRepository;
use Doctrine\Common\Collections\ArrayCollection;
use Doctrine\Common\Collections\Collection;
use Doctrine\ORM\Mapping as ORM;
#[ORM\Entity(repositoryClass: ProvinciasRepository::class)]
class Provincias
{
#[ORM\Id]
#[ORM\GeneratedValue]
#[ORM\Column]
private ?int $id = null;
#[ORM\Column(length: 100)]
private ?string $nombre = null;
#[ORM\OneToMany(mappedBy: 'idprovincia', targetEntity: Poblaciones::class, cascade: ['persist', 'remove'])]
private Collection $poblaciones;
#[ORM\Column(length: 2)]
private ?string $prefijo = null;
public function __construct()
{
$this->poblaciones = new ArrayCollection();
}
public function getId(): ?int
{
return $this->id;
}
public function getNombre(): ?string
{
return $this->nombre;
}
public function setNombre(string $nombre): static
{
$this->nombre = $nombre;
return $this;
}
/**
* @return Collection<int, Poblaciones>
*/
public function getPoblaciones(): Collection
{
return $this->poblaciones;
}
public function addPoblacione(Poblaciones $poblacione): static
{
if (!$this->poblaciones->contains($poblacione)) {
$this->poblaciones->add($poblacione);
$poblacione->setIdprovincia($this);
}
return $this;
}
public function removePoblacione(Poblaciones $poblacione): static
{
if ($this->poblaciones->removeElement($poblacione)) {
// set the owning side to null (unless already changed)
if ($poblacione->getIdprovincia() === $this) {
$poblacione->setIdprovincia(null);
}
}
return $this;
}
public function getPrefijo(): ?string
{
return $this->prefijo;
}
public function setPrefijo(string $prefijo): static
{
$this->prefijo = $prefijo;
return $this;
}
}