src/Entity/ClienteBitcubo.php line 16

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use Doctrine\Common\Collections\ArrayCollection;
  4. use Doctrine\Common\Collections\Collection;
  5. use Doctrine\ORM\Mapping as ORM;
  6. use App\Repository\ClienteBitcuboRepository;
  7. /**
  8.  * ClienteBitcubo
  9.  *
  10.  * @ORM\Table(name="cliente_bitcubo")
  11.  * @ORM\Entity(repositoryClass=ClienteBitcuboRepository::class)
  12.  */
  13. class ClienteBitcubo
  14. {
  15.     /**
  16.      * @ORM\Id
  17.      * @ORM\GeneratedValue
  18.      * @ORM\Column(type="integer")
  19.      */
  20.     private $id;
  21.     /**
  22.      * @ORM\Column(type="string", length=255, nullable=true)
  23.      */
  24.     private $nombres;
  25.     /**
  26.      * @ORM\Column(type="string", length=255, nullable=true)
  27.      */
  28.     private $apellidos;
  29.     /**
  30.      * @ORM\Column(type="string", length=15)
  31.      */
  32.     private $telefonocliente;
  33.     /**
  34.      * @ORM\Column(type="string", length=255, nullable=true)
  35.      */
  36.     private $emailcliente;
  37.     /**
  38.      * @ORM\Column(type="string", length=20, unique=true, nullable=true)
  39.      */
  40.     private $nifcliente;
  41.     /**
  42.      * @ORM\OneToMany(targetEntity=ClienteEnvioBitcubo::class, mappedBy="cliente_bitcubo", cascade={"persist", "remove"})
  43.      */
  44.     private $direcciones;
  45.     public function __construct()
  46.     {
  47.         $this->direcciones = new ArrayCollection();
  48.     }
  49.     public function getId(): ?int
  50.     {
  51.         return $this->id;
  52.     }
  53.     public function getNombres(): ?string
  54.     {
  55.         return $this->nombres;
  56.     }
  57.     public function setNombres(?string $nombres): static
  58.     {
  59.         $this->nombres $nombres;
  60.         return $this;
  61.     }
  62.     public function getApellidos(): ?string
  63.     {
  64.         return $this->apellidos;
  65.     }
  66.     public function setApellidos(?string $apellidos): static
  67.     {
  68.         $this->apellidos $apellidos;
  69.         return $this;
  70.     }
  71.     public function getTelefonocliente(): ?string
  72.     {
  73.         return $this->telefonocliente;
  74.     }
  75.     public function setTelefonocliente(string $telefonocliente): static
  76.     {
  77.         $this->telefonocliente $telefonocliente;
  78.         return $this;
  79.     }
  80.     public function getEmailcliente(): ?string
  81.     {
  82.         return $this->emailcliente;
  83.     }
  84.     public function setEmailcliente(?string $emailcliente): static
  85.     {
  86.         $this->emailcliente $emailcliente;
  87.         return $this;
  88.     }
  89.     public function getNifcliente(): ?string
  90.     {
  91.         return $this->nifcliente;
  92.     }
  93.     public function setNifcliente(?string $nifcliente): static
  94.     {
  95.         $this->nifcliente $nifcliente;
  96.         return $this;
  97.     }
  98.     /**
  99.      * @return Collection|ClienteEnvioBitcubo[]
  100.      */
  101.     public function getDirecciones(): Collection
  102.     {
  103.         return $this->direcciones;
  104.     }
  105.     public function addDireccion(ClienteEnvioBitcubo $direccion): self
  106.     {
  107.         if (!$this->direcciones->contains($direccion)) {
  108.             $this->direcciones[] = $direccion;
  109.             $direccion->setClienteBitcubo($this);
  110.         }
  111.         return $this;
  112.     }
  113.     public function removeDireccion(ClienteEnvioBitcubo $direccion): self
  114.     {
  115.         if ($this->direcciones->removeElement($direccion)) {
  116.             // set the owning side to null (unless already changed)
  117.             if ($direccion->getClienteBitcubo() === $this) {
  118.                 $direccion->setClienteBitcubo(null);
  119.             }
  120.         }
  121.         return $this;
  122.     }
  123.     /**
  124.      * @return array
  125.      */
  126.     public function getDireccionesArray(): array
  127.     {
  128.         $direccionesArray = [];
  129.         foreach ($this->getDirecciones() as $direccion) {
  130.             $direccionesArray[] = [
  131.                 'direccion' => $direccion->getDireccion(),
  132.                 'complemento' => $direccion->getComplemento(),
  133.             ];
  134.         }
  135.         return $direccionesArray;
  136.     }
  137. }