<?php
namespace Proxies\__CG__\App\Entity;
/**
* DO NOT EDIT THIS FILE - IT WAS CREATED BY DOCTRINE'S PROXY GENERATOR
*/
class Cliente extends \App\Entity\Cliente implements \Doctrine\ORM\Proxy\Proxy
{
/**
* @var \Closure the callback responsible for loading properties in the proxy object. This callback is called with
* three parameters, being respectively the proxy object to be initialized, the method that triggered the
* initialization process and an array of ordered parameters that were passed to that method.
*
* @see \Doctrine\Common\Proxy\Proxy::__setInitializer
*/
public $__initializer__;
/**
* @var \Closure the callback responsible of loading properties that need to be copied in the cloned object
*
* @see \Doctrine\Common\Proxy\Proxy::__setCloner
*/
public $__cloner__;
/**
* @var boolean flag indicating if this object was already initialized
*
* @see \Doctrine\Persistence\Proxy::__isInitialized
*/
public $__isInitialized__ = false;
/**
* @var array<string, null> properties to be lazy loaded, indexed by property name
*/
public static $lazyPropertiesNames = array (
);
/**
* @var array<string, mixed> default values of properties to be lazy loaded, with keys being the property names
*
* @see \Doctrine\Common\Proxy\Proxy::__getLazyProperties
*/
public static $lazyPropertiesDefaults = array (
);
public function __construct(?\Closure $initializer = null, ?\Closure $cloner = null)
{
$this->__initializer__ = $initializer;
$this->__cloner__ = $cloner;
}
/**
*
* @return array
*/
public function __sleep()
{
if ($this->__isInitialized__) {
return ['__isInitialized__', 'id', 'razonSocial', 'alias', 'identificacionTipo', 'identificacion', 'direccion', 'cp', 'region', 'ciudad', 'telefono', 'email', 'identificacionFrontal', 'identificacionFrontalFile', 'identificacionTrasera', 'identificacionTraseraFile', 'idioma', 'entidadBancaria', 'iban', '' . "\0" . 'App\\Entity\\Cliente' . "\0" . 'swift', 'observaciones', 'deletedAt', 'updatedAt', 'createdAt', 'pais', 'user', 'valoraciones', '' . "\0" . 'App\\Entity\\Cliente' . "\0" . 'actividades', 'operaciones', 'ccaa', 'provincia'];
}
return ['__isInitialized__', 'id', 'razonSocial', 'alias', 'identificacionTipo', 'identificacion', 'direccion', 'cp', 'region', 'ciudad', 'telefono', 'email', 'identificacionFrontal', 'identificacionFrontalFile', 'identificacionTrasera', 'identificacionTraseraFile', 'idioma', 'entidadBancaria', 'iban', '' . "\0" . 'App\\Entity\\Cliente' . "\0" . 'swift', 'observaciones', 'deletedAt', 'updatedAt', 'createdAt', 'pais', 'user', 'valoraciones', '' . "\0" . 'App\\Entity\\Cliente' . "\0" . 'actividades', 'operaciones', 'ccaa', 'provincia'];
}
/**
*
*/
public function __wakeup()
{
if ( ! $this->__isInitialized__) {
$this->__initializer__ = function (Cliente $proxy) {
$proxy->__setInitializer(null);
$proxy->__setCloner(null);
$existingProperties = get_object_vars($proxy);
foreach ($proxy::$lazyPropertiesDefaults as $property => $defaultValue) {
if ( ! array_key_exists($property, $existingProperties)) {
$proxy->$property = $defaultValue;
}
}
};
}
}
/**
*
*/
public function __clone()
{
$this->__cloner__ && $this->__cloner__->__invoke($this, '__clone', []);
}
/**
* Forces initialization of the proxy
*/
public function __load(): void
{
$this->__initializer__ && $this->__initializer__->__invoke($this, '__load', []);
}
/**
* {@inheritDoc}
* @internal generated method: use only when explicitly handling proxy specific loading logic
*/
public function __isInitialized(): bool
{
return $this->__isInitialized__;
}
/**
* {@inheritDoc}
* @internal generated method: use only when explicitly handling proxy specific loading logic
*/
public function __setInitialized($initialized): void
{
$this->__isInitialized__ = $initialized;
}
/**
* {@inheritDoc}
* @internal generated method: use only when explicitly handling proxy specific loading logic
*/
public function __setInitializer(?\Closure $initializer = null): void
{
$this->__initializer__ = $initializer;
}
/**
* {@inheritDoc}
* @internal generated method: use only when explicitly handling proxy specific loading logic
*/
public function __getInitializer(): ?\Closure
{
return $this->__initializer__;
}
/**
* {@inheritDoc}
* @internal generated method: use only when explicitly handling proxy specific loading logic
*/
public function __setCloner(?\Closure $cloner = null): void
{
$this->__cloner__ = $cloner;
}
/**
* {@inheritDoc}
* @internal generated method: use only when explicitly handling proxy specific cloning logic
*/
public function __getCloner(): ?\Closure
{
return $this->__cloner__;
}
/**
* {@inheritDoc}
* @internal generated method: use only when explicitly handling proxy specific loading logic
* @deprecated no longer in use - generated code now relies on internal components rather than generated public API
* @static
*/
public function __getLazyProperties(): array
{
return self::$lazyPropertiesDefaults;
}
/**
* {@inheritDoc}
*/
public function __toString(): string
{
$this->__initializer__ && $this->__initializer__->__invoke($this, '__toString', []);
return parent::__toString();
}
/**
* {@inheritDoc}
*/
public function getId(): ?string
{
if ($this->__isInitialized__ === false) {
return parent::getId();
}
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getId', []);
return parent::getId();
}
/**
* {@inheritDoc}
*/
public function getRazonSocial(): ?string
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getRazonSocial', []);
return parent::getRazonSocial();
}
/**
* {@inheritDoc}
*/
public function setRazonSocial(?string $razonSocial): \App\Entity\Cliente
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setRazonSocial', [$razonSocial]);
return parent::setRazonSocial($razonSocial);
}
/**
* {@inheritDoc}
*/
public function getAlias(): ?string
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getAlias', []);
return parent::getAlias();
}
/**
* {@inheritDoc}
*/
public function setAlias(?string $alias): \App\Entity\Cliente
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setAlias', [$alias]);
return parent::setAlias($alias);
}
/**
* {@inheritDoc}
*/
public function getIdentificacionTipo(): ?string
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getIdentificacionTipo', []);
return parent::getIdentificacionTipo();
}
/**
* {@inheritDoc}
*/
public function setIdentificacionTipo(?string $identificacionTipo): \App\Entity\Cliente
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setIdentificacionTipo', [$identificacionTipo]);
return parent::setIdentificacionTipo($identificacionTipo);
}
/**
* {@inheritDoc}
*/
public function getIdentificacion(): ?string
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getIdentificacion', []);
return parent::getIdentificacion();
}
/**
* {@inheritDoc}
*/
public function setIdentificacion(?string $identificacion): \App\Entity\Cliente
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setIdentificacion', [$identificacion]);
return parent::setIdentificacion($identificacion);
}
/**
* {@inheritDoc}
*/
public function getIdentificacionFrontal(): ?string
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getIdentificacionFrontal', []);
return parent::getIdentificacionFrontal();
}
/**
* {@inheritDoc}
*/
public function setIdentificacionFrontal(?string $identificacionFrontal): \App\Entity\Cliente
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setIdentificacionFrontal', [$identificacionFrontal]);
return parent::setIdentificacionFrontal($identificacionFrontal);
}
/**
* {@inheritDoc}
*/
public function getIdentificacionFrontalFile(): ?\Symfony\Component\HttpFoundation\File\File
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getIdentificacionFrontalFile', []);
return parent::getIdentificacionFrontalFile();
}
/**
* {@inheritDoc}
*/
public function setIdentificacionFrontalFile(?\Symfony\Component\HttpFoundation\File\File $identificacionFrontalFile): \App\Entity\Cliente
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setIdentificacionFrontalFile', [$identificacionFrontalFile]);
return parent::setIdentificacionFrontalFile($identificacionFrontalFile);
}
/**
* {@inheritDoc}
*/
public function getIdentificacionTrasera(): ?string
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getIdentificacionTrasera', []);
return parent::getIdentificacionTrasera();
}
/**
* {@inheritDoc}
*/
public function setIdentificacionTrasera(?string $identificacionTrasera): \App\Entity\Cliente
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setIdentificacionTrasera', [$identificacionTrasera]);
return parent::setIdentificacionTrasera($identificacionTrasera);
}
/**
* {@inheritDoc}
*/
public function getIdentificacionTraseraFile(): ?\Symfony\Component\HttpFoundation\File\File
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getIdentificacionTraseraFile', []);
return parent::getIdentificacionTraseraFile();
}
/**
* {@inheritDoc}
*/
public function setIdentificacionTraseraFile(?\Symfony\Component\HttpFoundation\File\File $identificacionTraseraFile): \App\Entity\Cliente
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setIdentificacionTraseraFile', [$identificacionTraseraFile]);
return parent::setIdentificacionTraseraFile($identificacionTraseraFile);
}
/**
* {@inheritDoc}
*/
public function getIdioma(): ?string
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getIdioma', []);
return parent::getIdioma();
}
/**
* {@inheritDoc}
*/
public function setIdioma(?string $idioma): \App\Entity\Cliente
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setIdioma', [$idioma]);
return parent::setIdioma($idioma);
}
/**
* {@inheritDoc}
*/
public function getEntidadBancaria(): ?string
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getEntidadBancaria', []);
return parent::getEntidadBancaria();
}
/**
* {@inheritDoc}
*/
public function setEntidadBancaria(?string $entidadBancaria): \App\Entity\Cliente
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setEntidadBancaria', [$entidadBancaria]);
return parent::setEntidadBancaria($entidadBancaria);
}
/**
* {@inheritDoc}
*/
public function getIban(): ?string
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getIban', []);
return parent::getIban();
}
/**
* {@inheritDoc}
*/
public function setIban(?string $iban): \App\Entity\Cliente
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setIban', [$iban]);
return parent::setIban($iban);
}
/**
* {@inheritDoc}
*/
public function getObservaciones(): ?string
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getObservaciones', []);
return parent::getObservaciones();
}
/**
* {@inheritDoc}
*/
public function setObservaciones(?string $observaciones): \App\Entity\Cliente
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setObservaciones', [$observaciones]);
return parent::setObservaciones($observaciones);
}
/**
* {@inheritDoc}
*/
public function getDeletedAt(): ?\DateTimeInterface
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getDeletedAt', []);
return parent::getDeletedAt();
}
/**
* {@inheritDoc}
*/
public function setDeletedAt(?\DateTimeInterface $deletedAt): \App\Entity\Cliente
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setDeletedAt', [$deletedAt]);
return parent::setDeletedAt($deletedAt);
}
/**
* {@inheritDoc}
*/
public function getUpdatedAt(): ?\DateTimeInterface
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getUpdatedAt', []);
return parent::getUpdatedAt();
}
/**
* {@inheritDoc}
*/
public function setUpdatedAt(\DateTimeInterface $updatedAt): \App\Entity\Cliente
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setUpdatedAt', [$updatedAt]);
return parent::setUpdatedAt($updatedAt);
}
/**
* {@inheritDoc}
*/
public function getCreatedAt(): ?\DateTimeInterface
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getCreatedAt', []);
return parent::getCreatedAt();
}
/**
* {@inheritDoc}
*/
public function setCreatedAt(\DateTimeInterface $createdAt): \App\Entity\Cliente
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setCreatedAt', [$createdAt]);
return parent::setCreatedAt($createdAt);
}
/**
* {@inheritDoc}
*/
public function getUser(): ?\App\Entity\User
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getUser', []);
return parent::getUser();
}
/**
* {@inheritDoc}
*/
public function setUser(?\App\Entity\User $user): \App\Entity\Cliente
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setUser', [$user]);
return parent::setUser($user);
}
/**
* {@inheritDoc}
*/
public function getValoraciones(): \Doctrine\Common\Collections\Collection
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getValoraciones', []);
return parent::getValoraciones();
}
/**
* {@inheritDoc}
*/
public function addValoracione(\App\Entity\Valoracion $valoracione): \App\Entity\Cliente
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'addValoracione', [$valoracione]);
return parent::addValoracione($valoracione);
}
/**
* {@inheritDoc}
*/
public function removeValoracione(\App\Entity\Valoracion $valoracione): \App\Entity\Cliente
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'removeValoracione', [$valoracione]);
return parent::removeValoracione($valoracione);
}
/**
* {@inheritDoc}
*/
public function getOperaciones(): \Doctrine\Common\Collections\Collection
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getOperaciones', []);
return parent::getOperaciones();
}
/**
* {@inheritDoc}
*/
public function addOperacione(\App\Entity\Operacion $operacione): \App\Entity\Cliente
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'addOperacione', [$operacione]);
return parent::addOperacione($operacione);
}
/**
* {@inheritDoc}
*/
public function removeOperacione(\App\Entity\Operacion $operacione): \App\Entity\Cliente
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'removeOperacione', [$operacione]);
return parent::removeOperacione($operacione);
}
/**
* {@inheritDoc}
*/
public function getTelefono(): ?string
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getTelefono', []);
return parent::getTelefono();
}
/**
* {@inheritDoc}
*/
public function setTelefono(?string $telefono): \App\Entity\Cliente
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setTelefono', [$telefono]);
return parent::setTelefono($telefono);
}
/**
* {@inheritDoc}
*/
public function getEmail(): ?string
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getEmail', []);
return parent::getEmail();
}
/**
* {@inheritDoc}
*/
public function setEmail(?string $email): \App\Entity\Cliente
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setEmail', [$email]);
return parent::setEmail($email);
}
/**
* {@inheritDoc}
*/
public function getDireccion(): ?string
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getDireccion', []);
return parent::getDireccion();
}
/**
* {@inheritDoc}
*/
public function setDireccion(?string $direccion): \App\Entity\Cliente
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setDireccion', [$direccion]);
return parent::setDireccion($direccion);
}
/**
* {@inheritDoc}
*/
public function getCp(): ?string
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getCp', []);
return parent::getCp();
}
/**
* {@inheritDoc}
*/
public function setCp(?string $cp): \App\Entity\Cliente
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setCp', [$cp]);
return parent::setCp($cp);
}
/**
* {@inheritDoc}
*/
public function getCiudad(): ?string
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getCiudad', []);
return parent::getCiudad();
}
/**
* {@inheritDoc}
*/
public function setCiudad(?string $ciudad): \App\Entity\Cliente
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setCiudad', [$ciudad]);
return parent::setCiudad($ciudad);
}
/**
* {@inheritDoc}
*/
public function getCcaa(): ?\App\Entity\CCAA
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getCcaa', []);
return parent::getCcaa();
}
/**
* {@inheritDoc}
*/
public function setCcaa(?\App\Entity\CCAA $ccaa): \App\Entity\Cliente
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setCcaa', [$ccaa]);
return parent::setCcaa($ccaa);
}
/**
* {@inheritDoc}
*/
public function getPais(): ?string
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getPais', []);
return parent::getPais();
}
/**
* {@inheritDoc}
*/
public function setPais(?string $pais): \App\Entity\Cliente
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setPais', [$pais]);
return parent::setPais($pais);
}
/**
* {@inheritDoc}
*/
public function getProvincia(): ?\App\Entity\Provincia
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getProvincia', []);
return parent::getProvincia();
}
/**
* {@inheritDoc}
*/
public function setProvincia(?\App\Entity\Provincia $provincia): \App\Entity\Cliente
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setProvincia', [$provincia]);
return parent::setProvincia($provincia);
}
/**
* {@inheritDoc}
*/
public function getActividades(): \Doctrine\Common\Collections\Collection
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getActividades', []);
return parent::getActividades();
}
/**
* {@inheritDoc}
*/
public function addActividade(\App\Entity\ActividadAbstract $actividade): static
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'addActividade', [$actividade]);
return parent::addActividade($actividade);
}
/**
* {@inheritDoc}
*/
public function removeActividade(\App\Entity\ActividadAbstract $actividade): static
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'removeActividade', [$actividade]);
return parent::removeActividade($actividade);
}
/**
* {@inheritDoc}
*/
public function getRegion(): ?string
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getRegion', []);
return parent::getRegion();
}
/**
* {@inheritDoc}
*/
public function setRegion(?string $region): static
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setRegion', [$region]);
return parent::setRegion($region);
}
/**
* {@inheritDoc}
*/
public function getExportPais(): ?string
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getExportPais', []);
return parent::getExportPais();
}
/**
* {@inheritDoc}
*/
public function getSwift(): ?string
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getSwift', []);
return parent::getSwift();
}
/**
* {@inheritDoc}
*/
public function setSwift(?string $swift): static
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setSwift', [$swift]);
return parent::setSwift($swift);
}
}