var/cache/dev/doctrine/orm/Proxies/__CG__AppEntityAdmin.php line 9

Open in your IDE?
  1. <?php
  2. namespace Proxies\__CG__\App\Entity;
  3. /**
  4.  * DO NOT EDIT THIS FILE - IT WAS CREATED BY DOCTRINE'S PROXY GENERATOR
  5.  */
  6. class Admin extends \App\Entity\Admin implements \Doctrine\ORM\Proxy\Proxy
  7. {
  8.     /**
  9.      * @var \Closure the callback responsible for loading properties in the proxy object. This callback is called with
  10.      *      three parameters, being respectively the proxy object to be initialized, the method that triggered the
  11.      *      initialization process and an array of ordered parameters that were passed to that method.
  12.      *
  13.      * @see \Doctrine\Common\Proxy\Proxy::__setInitializer
  14.      */
  15.     public $__initializer__;
  16.     /**
  17.      * @var \Closure the callback responsible of loading properties that need to be copied in the cloned object
  18.      *
  19.      * @see \Doctrine\Common\Proxy\Proxy::__setCloner
  20.      */
  21.     public $__cloner__;
  22.     /**
  23.      * @var boolean flag indicating if this object was already initialized
  24.      *
  25.      * @see \Doctrine\Persistence\Proxy::__isInitialized
  26.      */
  27.     public $__isInitialized__ false;
  28.     /**
  29.      * @var array<string, null> properties to be lazy loaded, indexed by property name
  30.      */
  31.     public static $lazyPropertiesNames = array (
  32. );
  33.     /**
  34.      * @var array<string, mixed> default values of properties to be lazy loaded, with keys being the property names
  35.      *
  36.      * @see \Doctrine\Common\Proxy\Proxy::__getLazyProperties
  37.      */
  38.     public static $lazyPropertiesDefaults = array (
  39. );
  40.     public function __construct(?\Closure $initializer null, ?\Closure $cloner null)
  41.     {
  42.         $this->__initializer__ $initializer;
  43.         $this->__cloner__      $cloner;
  44.     }
  45.     /**
  46.      * 
  47.      * @return array
  48.      */
  49.     public function __sleep()
  50.     {
  51.         if ($this->__isInitialized__) {
  52.             return ['__isInitialized__''' "\0" 'App\\Entity\\Admin' "\0" 'id''' "\0" 'App\\Entity\\Admin' "\0" 'empresas''' "\0" 'App\\Entity\\Admin' "\0" 'solicitarEmpresas''' "\0" 'App\\Entity\\Admin' "\0" 'prestadors''' "\0" 'App\\Entity\\Admin' "\0" 'subBeneficios''' "\0" 'App\\Entity\\Admin' "\0" 'beneficios''' "\0" 'App\\Entity\\Admin' "\0" 'proveedors''' "\0" 'App\\Entity\\Admin' "\0" 'facturaDeCompras''' "\0" 'App\\Entity\\Admin' "\0" 'compraStocks''' "\0" 'App\\Entity\\Admin' "\0" 'empleadoBeneficios''' "\0" 'App\\Entity\\Admin' "\0" 'conceptos''' "\0" 'App\\Entity\\Admin' "\0" 'mediosDePagos''' "\0" 'App\\Entity\\Admin' "\0" 'boleta''' "\0" 'App\\Entity\\Admin' "\0" 'escalaSalarials''' "\0" 'App\\Entity\\Admin' "\0" 'motivoLiquidacionEmpleado''' "\0" 'App\\Entity\\Admin' "\0" 'acuerdoDePagos''' "\0" 'App\\Entity\\Admin' "\0" 'pagosAcuerdos''' "\0" 'App\\Entity\\Admin' "\0" 'informarPagos''' "\0" 'App\\Entity\\Admin' "\0" 'itemDenuncias''' "\0" 'App\\Entity\\Admin' "\0" 'denuncias''' "\0" 'App\\Entity\\Admin' "\0" 'pagosBancos''' "\0" 'App\\Entity\\Admin' "\0" 'certificado''' "\0" 'App\\Entity\\Admin' "\0" 'empleadoRecibos'];
  53.         }
  54.         return ['__isInitialized__''' "\0" 'App\\Entity\\Admin' "\0" 'id''' "\0" 'App\\Entity\\Admin' "\0" 'empresas''' "\0" 'App\\Entity\\Admin' "\0" 'solicitarEmpresas''' "\0" 'App\\Entity\\Admin' "\0" 'prestadors''' "\0" 'App\\Entity\\Admin' "\0" 'subBeneficios''' "\0" 'App\\Entity\\Admin' "\0" 'beneficios''' "\0" 'App\\Entity\\Admin' "\0" 'proveedors''' "\0" 'App\\Entity\\Admin' "\0" 'facturaDeCompras''' "\0" 'App\\Entity\\Admin' "\0" 'compraStocks''' "\0" 'App\\Entity\\Admin' "\0" 'empleadoBeneficios''' "\0" 'App\\Entity\\Admin' "\0" 'conceptos''' "\0" 'App\\Entity\\Admin' "\0" 'mediosDePagos''' "\0" 'App\\Entity\\Admin' "\0" 'boleta''' "\0" 'App\\Entity\\Admin' "\0" 'escalaSalarials''' "\0" 'App\\Entity\\Admin' "\0" 'motivoLiquidacionEmpleado''' "\0" 'App\\Entity\\Admin' "\0" 'acuerdoDePagos''' "\0" 'App\\Entity\\Admin' "\0" 'pagosAcuerdos''' "\0" 'App\\Entity\\Admin' "\0" 'informarPagos''' "\0" 'App\\Entity\\Admin' "\0" 'itemDenuncias''' "\0" 'App\\Entity\\Admin' "\0" 'denuncias''' "\0" 'App\\Entity\\Admin' "\0" 'pagosBancos''' "\0" 'App\\Entity\\Admin' "\0" 'certificado''' "\0" 'App\\Entity\\Admin' "\0" 'empleadoRecibos'];
  55.     }
  56.     /**
  57.      * 
  58.      */
  59.     public function __wakeup()
  60.     {
  61.         if ( ! $this->__isInitialized__) {
  62.             $this->__initializer__ = function (Admin $proxy) {
  63.                 $proxy->__setInitializer(null);
  64.                 $proxy->__setCloner(null);
  65.                 $existingProperties get_object_vars($proxy);
  66.                 foreach ($proxy::$lazyPropertiesDefaults as $property => $defaultValue) {
  67.                     if ( ! array_key_exists($property$existingProperties)) {
  68.                         $proxy->$property $defaultValue;
  69.                     }
  70.                 }
  71.             };
  72.         }
  73.     }
  74.     /**
  75.      * 
  76.      */
  77.     public function __clone()
  78.     {
  79.         $this->__cloner__ && $this->__cloner__->__invoke($this'__clone', []);
  80.     }
  81.     /**
  82.      * Forces initialization of the proxy
  83.      */
  84.     public function __load(): void
  85.     {
  86.         $this->__initializer__ && $this->__initializer__->__invoke($this'__load', []);
  87.     }
  88.     /**
  89.      * {@inheritDoc}
  90.      * @internal generated method: use only when explicitly handling proxy specific loading logic
  91.      */
  92.     public function __isInitialized(): bool
  93.     {
  94.         return $this->__isInitialized__;
  95.     }
  96.     /**
  97.      * {@inheritDoc}
  98.      * @internal generated method: use only when explicitly handling proxy specific loading logic
  99.      */
  100.     public function __setInitialized($initialized): void
  101.     {
  102.         $this->__isInitialized__ $initialized;
  103.     }
  104.     /**
  105.      * {@inheritDoc}
  106.      * @internal generated method: use only when explicitly handling proxy specific loading logic
  107.      */
  108.     public function __setInitializer(\Closure $initializer null): void
  109.     {
  110.         $this->__initializer__ $initializer;
  111.     }
  112.     /**
  113.      * {@inheritDoc}
  114.      * @internal generated method: use only when explicitly handling proxy specific loading logic
  115.      */
  116.     public function __getInitializer(): ?\Closure
  117.     {
  118.         return $this->__initializer__;
  119.     }
  120.     /**
  121.      * {@inheritDoc}
  122.      * @internal generated method: use only when explicitly handling proxy specific loading logic
  123.      */
  124.     public function __setCloner(\Closure $cloner null): void
  125.     {
  126.         $this->__cloner__ $cloner;
  127.     }
  128.     /**
  129.      * {@inheritDoc}
  130.      * @internal generated method: use only when explicitly handling proxy specific cloning logic
  131.      */
  132.     public function __getCloner(): ?\Closure
  133.     {
  134.         return $this->__cloner__;
  135.     }
  136.     /**
  137.      * {@inheritDoc}
  138.      * @internal generated method: use only when explicitly handling proxy specific loading logic
  139.      * @deprecated no longer in use - generated code now relies on internal components rather than generated public API
  140.      * @static
  141.      */
  142.     public function __getLazyProperties(): array
  143.     {
  144.         return self::$lazyPropertiesDefaults;
  145.     }
  146.     
  147.     /**
  148.      * {@inheritDoc}
  149.      */
  150.     public function getEmpresas(): \Doctrine\Common\Collections\Collection
  151.     {
  152.         $this->__initializer__ && $this->__initializer__->__invoke($this'getEmpresas', []);
  153.         return parent::getEmpresas();
  154.     }
  155.     /**
  156.      * {@inheritDoc}
  157.      */
  158.     public function addEmpresa(\App\Entity\Empresa $empresa): \App\Entity\Admin
  159.     {
  160.         $this->__initializer__ && $this->__initializer__->__invoke($this'addEmpresa', [$empresa]);
  161.         return parent::addEmpresa($empresa);
  162.     }
  163.     /**
  164.      * {@inheritDoc}
  165.      */
  166.     public function removeEmpresa(\App\Entity\Empresa $empresa): \App\Entity\Admin
  167.     {
  168.         $this->__initializer__ && $this->__initializer__->__invoke($this'removeEmpresa', [$empresa]);
  169.         return parent::removeEmpresa($empresa);
  170.     }
  171.     /**
  172.      * {@inheritDoc}
  173.      */
  174.     public function getSolicitarEmpresas(): \Doctrine\Common\Collections\Collection
  175.     {
  176.         $this->__initializer__ && $this->__initializer__->__invoke($this'getSolicitarEmpresas', []);
  177.         return parent::getSolicitarEmpresas();
  178.     }
  179.     /**
  180.      * {@inheritDoc}
  181.      */
  182.     public function addSolicitarEmpresa(\App\Entity\SolicitarEmpresa $solicitarEmpresa): \App\Entity\Admin
  183.     {
  184.         $this->__initializer__ && $this->__initializer__->__invoke($this'addSolicitarEmpresa', [$solicitarEmpresa]);
  185.         return parent::addSolicitarEmpresa($solicitarEmpresa);
  186.     }
  187.     /**
  188.      * {@inheritDoc}
  189.      */
  190.     public function removeSolicitarEmpresa(\App\Entity\SolicitarEmpresa $solicitarEmpresa): \App\Entity\Admin
  191.     {
  192.         $this->__initializer__ && $this->__initializer__->__invoke($this'removeSolicitarEmpresa', [$solicitarEmpresa]);
  193.         return parent::removeSolicitarEmpresa($solicitarEmpresa);
  194.     }
  195.     /**
  196.      * {@inheritDoc}
  197.      */
  198.     public function getPrestadors(): \Doctrine\Common\Collections\Collection
  199.     {
  200.         $this->__initializer__ && $this->__initializer__->__invoke($this'getPrestadors', []);
  201.         return parent::getPrestadors();
  202.     }
  203.     /**
  204.      * {@inheritDoc}
  205.      */
  206.     public function addPrestador(\App\Entity\Prestador $prestador): \App\Entity\Admin
  207.     {
  208.         $this->__initializer__ && $this->__initializer__->__invoke($this'addPrestador', [$prestador]);
  209.         return parent::addPrestador($prestador);
  210.     }
  211.     /**
  212.      * {@inheritDoc}
  213.      */
  214.     public function removePrestador(\App\Entity\Prestador $prestador): \App\Entity\Admin
  215.     {
  216.         $this->__initializer__ && $this->__initializer__->__invoke($this'removePrestador', [$prestador]);
  217.         return parent::removePrestador($prestador);
  218.     }
  219.     /**
  220.      * {@inheritDoc}
  221.      */
  222.     public function getSubBeneficios(): \Doctrine\Common\Collections\Collection
  223.     {
  224.         $this->__initializer__ && $this->__initializer__->__invoke($this'getSubBeneficios', []);
  225.         return parent::getSubBeneficios();
  226.     }
  227.     /**
  228.      * {@inheritDoc}
  229.      */
  230.     public function addSubBeneficio(\App\Entity\SubBeneficio $subBeneficio): \App\Entity\Admin
  231.     {
  232.         $this->__initializer__ && $this->__initializer__->__invoke($this'addSubBeneficio', [$subBeneficio]);
  233.         return parent::addSubBeneficio($subBeneficio);
  234.     }
  235.     /**
  236.      * {@inheritDoc}
  237.      */
  238.     public function removeSubBeneficio(\App\Entity\SubBeneficio $subBeneficio): \App\Entity\Admin
  239.     {
  240.         $this->__initializer__ && $this->__initializer__->__invoke($this'removeSubBeneficio', [$subBeneficio]);
  241.         return parent::removeSubBeneficio($subBeneficio);
  242.     }
  243.     /**
  244.      * {@inheritDoc}
  245.      */
  246.     public function getBeneficios(): \Doctrine\Common\Collections\Collection
  247.     {
  248.         $this->__initializer__ && $this->__initializer__->__invoke($this'getBeneficios', []);
  249.         return parent::getBeneficios();
  250.     }
  251.     /**
  252.      * {@inheritDoc}
  253.      */
  254.     public function addBeneficio(\App\Entity\Beneficio $beneficio): \App\Entity\Admin
  255.     {
  256.         $this->__initializer__ && $this->__initializer__->__invoke($this'addBeneficio', [$beneficio]);
  257.         return parent::addBeneficio($beneficio);
  258.     }
  259.     /**
  260.      * {@inheritDoc}
  261.      */
  262.     public function removeBeneficio(\App\Entity\Beneficio $beneficio): \App\Entity\Admin
  263.     {
  264.         $this->__initializer__ && $this->__initializer__->__invoke($this'removeBeneficio', [$beneficio]);
  265.         return parent::removeBeneficio($beneficio);
  266.     }
  267.     /**
  268.      * {@inheritDoc}
  269.      */
  270.     public function getProveedors(): \Doctrine\Common\Collections\Collection
  271.     {
  272.         $this->__initializer__ && $this->__initializer__->__invoke($this'getProveedors', []);
  273.         return parent::getProveedors();
  274.     }
  275.     /**
  276.      * {@inheritDoc}
  277.      */
  278.     public function addProveedor(\App\Entity\Proveedor $proveedor): \App\Entity\Admin
  279.     {
  280.         $this->__initializer__ && $this->__initializer__->__invoke($this'addProveedor', [$proveedor]);
  281.         return parent::addProveedor($proveedor);
  282.     }
  283.     /**
  284.      * {@inheritDoc}
  285.      */
  286.     public function removeProveedor(\App\Entity\Proveedor $proveedor): \App\Entity\Admin
  287.     {
  288.         $this->__initializer__ && $this->__initializer__->__invoke($this'removeProveedor', [$proveedor]);
  289.         return parent::removeProveedor($proveedor);
  290.     }
  291.     /**
  292.      * {@inheritDoc}
  293.      */
  294.     public function getFacturaDeCompras(): \Doctrine\Common\Collections\Collection
  295.     {
  296.         $this->__initializer__ && $this->__initializer__->__invoke($this'getFacturaDeCompras', []);
  297.         return parent::getFacturaDeCompras();
  298.     }
  299.     /**
  300.      * {@inheritDoc}
  301.      */
  302.     public function addFacturaDeCompra(\App\Entity\FacturaDeCompra $facturaDeCompra): \App\Entity\Admin
  303.     {
  304.         $this->__initializer__ && $this->__initializer__->__invoke($this'addFacturaDeCompra', [$facturaDeCompra]);
  305.         return parent::addFacturaDeCompra($facturaDeCompra);
  306.     }
  307.     /**
  308.      * {@inheritDoc}
  309.      */
  310.     public function removeFacturaDeCompra(\App\Entity\FacturaDeCompra $facturaDeCompra): \App\Entity\Admin
  311.     {
  312.         $this->__initializer__ && $this->__initializer__->__invoke($this'removeFacturaDeCompra', [$facturaDeCompra]);
  313.         return parent::removeFacturaDeCompra($facturaDeCompra);
  314.     }
  315.     /**
  316.      * {@inheritDoc}
  317.      */
  318.     public function getCompraStocks(): \Doctrine\Common\Collections\Collection
  319.     {
  320.         $this->__initializer__ && $this->__initializer__->__invoke($this'getCompraStocks', []);
  321.         return parent::getCompraStocks();
  322.     }
  323.     /**
  324.      * {@inheritDoc}
  325.      */
  326.     public function addCompraStock(\App\Entity\CompraStock $compraStock): \App\Entity\Admin
  327.     {
  328.         $this->__initializer__ && $this->__initializer__->__invoke($this'addCompraStock', [$compraStock]);
  329.         return parent::addCompraStock($compraStock);
  330.     }
  331.     /**
  332.      * {@inheritDoc}
  333.      */
  334.     public function removeCompraStock(\App\Entity\CompraStock $compraStock): \App\Entity\Admin
  335.     {
  336.         $this->__initializer__ && $this->__initializer__->__invoke($this'removeCompraStock', [$compraStock]);
  337.         return parent::removeCompraStock($compraStock);
  338.     }
  339.     /**
  340.      * {@inheritDoc}
  341.      */
  342.     public function getEmpleadoBeneficios(): \Doctrine\Common\Collections\Collection
  343.     {
  344.         $this->__initializer__ && $this->__initializer__->__invoke($this'getEmpleadoBeneficios', []);
  345.         return parent::getEmpleadoBeneficios();
  346.     }
  347.     /**
  348.      * {@inheritDoc}
  349.      */
  350.     public function addEmpleadoBeneficio(\App\Entity\EmpleadoBeneficio $empleadoBeneficio): \App\Entity\Admin
  351.     {
  352.         $this->__initializer__ && $this->__initializer__->__invoke($this'addEmpleadoBeneficio', [$empleadoBeneficio]);
  353.         return parent::addEmpleadoBeneficio($empleadoBeneficio);
  354.     }
  355.     /**
  356.      * {@inheritDoc}
  357.      */
  358.     public function removeEmpleadoBeneficio(\App\Entity\EmpleadoBeneficio $empleadoBeneficio): \App\Entity\Admin
  359.     {
  360.         $this->__initializer__ && $this->__initializer__->__invoke($this'removeEmpleadoBeneficio', [$empleadoBeneficio]);
  361.         return parent::removeEmpleadoBeneficio($empleadoBeneficio);
  362.     }
  363.     /**
  364.      * {@inheritDoc}
  365.      */
  366.     public function getConceptos(): \Doctrine\Common\Collections\Collection
  367.     {
  368.         $this->__initializer__ && $this->__initializer__->__invoke($this'getConceptos', []);
  369.         return parent::getConceptos();
  370.     }
  371.     /**
  372.      * {@inheritDoc}
  373.      */
  374.     public function addConcepto(\App\Entity\Concepto $concepto): \App\Entity\Admin
  375.     {
  376.         $this->__initializer__ && $this->__initializer__->__invoke($this'addConcepto', [$concepto]);
  377.         return parent::addConcepto($concepto);
  378.     }
  379.     /**
  380.      * {@inheritDoc}
  381.      */
  382.     public function removeConcepto(\App\Entity\Concepto $concepto): \App\Entity\Admin
  383.     {
  384.         $this->__initializer__ && $this->__initializer__->__invoke($this'removeConcepto', [$concepto]);
  385.         return parent::removeConcepto($concepto);
  386.     }
  387.     /**
  388.      * {@inheritDoc}
  389.      */
  390.     public function getMediosDePagos(): \Doctrine\Common\Collections\Collection
  391.     {
  392.         $this->__initializer__ && $this->__initializer__->__invoke($this'getMediosDePagos', []);
  393.         return parent::getMediosDePagos();
  394.     }
  395.     /**
  396.      * {@inheritDoc}
  397.      */
  398.     public function addMediosDePago(\App\Entity\MediosDePago $mediosDePago): \App\Entity\Admin
  399.     {
  400.         $this->__initializer__ && $this->__initializer__->__invoke($this'addMediosDePago', [$mediosDePago]);
  401.         return parent::addMediosDePago($mediosDePago);
  402.     }
  403.     /**
  404.      * {@inheritDoc}
  405.      */
  406.     public function removeMediosDePago(\App\Entity\MediosDePago $mediosDePago): \App\Entity\Admin
  407.     {
  408.         $this->__initializer__ && $this->__initializer__->__invoke($this'removeMediosDePago', [$mediosDePago]);
  409.         return parent::removeMediosDePago($mediosDePago);
  410.     }
  411.     /**
  412.      * {@inheritDoc}
  413.      */
  414.     public function getBoleta(): \Doctrine\Common\Collections\Collection
  415.     {
  416.         $this->__initializer__ && $this->__initializer__->__invoke($this'getBoleta', []);
  417.         return parent::getBoleta();
  418.     }
  419.     /**
  420.      * {@inheritDoc}
  421.      */
  422.     public function addBoleta(\App\Entity\Boleta $boleta): \App\Entity\Admin
  423.     {
  424.         $this->__initializer__ && $this->__initializer__->__invoke($this'addBoleta', [$boleta]);
  425.         return parent::addBoleta($boleta);
  426.     }
  427.     /**
  428.      * {@inheritDoc}
  429.      */
  430.     public function removeBoleta(\App\Entity\Boleta $boleta): \App\Entity\Admin
  431.     {
  432.         $this->__initializer__ && $this->__initializer__->__invoke($this'removeBoleta', [$boleta]);
  433.         return parent::removeBoleta($boleta);
  434.     }
  435.     /**
  436.      * {@inheritDoc}
  437.      */
  438.     public function getEscalaSalarials(): \Doctrine\Common\Collections\Collection
  439.     {
  440.         $this->__initializer__ && $this->__initializer__->__invoke($this'getEscalaSalarials', []);
  441.         return parent::getEscalaSalarials();
  442.     }
  443.     /**
  444.      * {@inheritDoc}
  445.      */
  446.     public function addEscalaSalarial(\App\Entity\EscalaSalarial $escalaSalarial): \App\Entity\Admin
  447.     {
  448.         $this->__initializer__ && $this->__initializer__->__invoke($this'addEscalaSalarial', [$escalaSalarial]);
  449.         return parent::addEscalaSalarial($escalaSalarial);
  450.     }
  451.     /**
  452.      * {@inheritDoc}
  453.      */
  454.     public function removeEscalaSalarial(\App\Entity\EscalaSalarial $escalaSalarial): \App\Entity\Admin
  455.     {
  456.         $this->__initializer__ && $this->__initializer__->__invoke($this'removeEscalaSalarial', [$escalaSalarial]);
  457.         return parent::removeEscalaSalarial($escalaSalarial);
  458.     }
  459.     /**
  460.      * {@inheritDoc}
  461.      */
  462.     public function getMotivoLiquidacionEmpleado(): \Doctrine\Common\Collections\Collection
  463.     {
  464.         $this->__initializer__ && $this->__initializer__->__invoke($this'getMotivoLiquidacionEmpleado', []);
  465.         return parent::getMotivoLiquidacionEmpleado();
  466.     }
  467.     /**
  468.      * {@inheritDoc}
  469.      */
  470.     public function addMotivoLiquidacionEmpleado(\App\Entity\MotivoLiquidacionEmpleado $motivoLiquidacionEmpleado): \App\Entity\Admin
  471.     {
  472.         $this->__initializer__ && $this->__initializer__->__invoke($this'addMotivoLiquidacionEmpleado', [$motivoLiquidacionEmpleado]);
  473.         return parent::addMotivoLiquidacionEmpleado($motivoLiquidacionEmpleado);
  474.     }
  475.     /**
  476.      * {@inheritDoc}
  477.      */
  478.     public function removeMotivoLiquidacionEmpleado(\App\Entity\MotivoLiquidacionEmpleado $motivoLiquidacionEmpleado): \App\Entity\Admin
  479.     {
  480.         $this->__initializer__ && $this->__initializer__->__invoke($this'removeMotivoLiquidacionEmpleado', [$motivoLiquidacionEmpleado]);
  481.         return parent::removeMotivoLiquidacionEmpleado($motivoLiquidacionEmpleado);
  482.     }
  483.     /**
  484.      * {@inheritDoc}
  485.      */
  486.     public function getAcuerdoDePagos(): \Doctrine\Common\Collections\Collection
  487.     {
  488.         $this->__initializer__ && $this->__initializer__->__invoke($this'getAcuerdoDePagos', []);
  489.         return parent::getAcuerdoDePagos();
  490.     }
  491.     /**
  492.      * {@inheritDoc}
  493.      */
  494.     public function addAcuerdoDePago(\App\Entity\AcuerdoDePago $acuerdoDePago): \App\Entity\Admin
  495.     {
  496.         $this->__initializer__ && $this->__initializer__->__invoke($this'addAcuerdoDePago', [$acuerdoDePago]);
  497.         return parent::addAcuerdoDePago($acuerdoDePago);
  498.     }
  499.     /**
  500.      * {@inheritDoc}
  501.      */
  502.     public function removeAcuerdoDePago(\App\Entity\AcuerdoDePago $acuerdoDePago): \App\Entity\Admin
  503.     {
  504.         $this->__initializer__ && $this->__initializer__->__invoke($this'removeAcuerdoDePago', [$acuerdoDePago]);
  505.         return parent::removeAcuerdoDePago($acuerdoDePago);
  506.     }
  507.     /**
  508.      * {@inheritDoc}
  509.      */
  510.     public function getPagosAcuerdos(): \Doctrine\Common\Collections\Collection
  511.     {
  512.         $this->__initializer__ && $this->__initializer__->__invoke($this'getPagosAcuerdos', []);
  513.         return parent::getPagosAcuerdos();
  514.     }
  515.     /**
  516.      * {@inheritDoc}
  517.      */
  518.     public function addPagosAcuerdo(\App\Entity\PagosAcuerdo $pagosAcuerdo): \App\Entity\Admin
  519.     {
  520.         $this->__initializer__ && $this->__initializer__->__invoke($this'addPagosAcuerdo', [$pagosAcuerdo]);
  521.         return parent::addPagosAcuerdo($pagosAcuerdo);
  522.     }
  523.     /**
  524.      * {@inheritDoc}
  525.      */
  526.     public function removePagosAcuerdo(\App\Entity\PagosAcuerdo $pagosAcuerdo): \App\Entity\Admin
  527.     {
  528.         $this->__initializer__ && $this->__initializer__->__invoke($this'removePagosAcuerdo', [$pagosAcuerdo]);
  529.         return parent::removePagosAcuerdo($pagosAcuerdo);
  530.     }
  531.     /**
  532.      * {@inheritDoc}
  533.      */
  534.     public function getInformarPagos(): \Doctrine\Common\Collections\Collection
  535.     {
  536.         $this->__initializer__ && $this->__initializer__->__invoke($this'getInformarPagos', []);
  537.         return parent::getInformarPagos();
  538.     }
  539.     /**
  540.      * {@inheritDoc}
  541.      */
  542.     public function addInformarPago(\App\Entity\InformarPago $informarPago): \App\Entity\Admin
  543.     {
  544.         $this->__initializer__ && $this->__initializer__->__invoke($this'addInformarPago', [$informarPago]);
  545.         return parent::addInformarPago($informarPago);
  546.     }
  547.     /**
  548.      * {@inheritDoc}
  549.      */
  550.     public function removeInformarPago(\App\Entity\InformarPago $informarPago): \App\Entity\Admin
  551.     {
  552.         $this->__initializer__ && $this->__initializer__->__invoke($this'removeInformarPago', [$informarPago]);
  553.         return parent::removeInformarPago($informarPago);
  554.     }
  555.     /**
  556.      * {@inheritDoc}
  557.      */
  558.     public function getItemDenuncias(): \Doctrine\Common\Collections\Collection
  559.     {
  560.         $this->__initializer__ && $this->__initializer__->__invoke($this'getItemDenuncias', []);
  561.         return parent::getItemDenuncias();
  562.     }
  563.     /**
  564.      * {@inheritDoc}
  565.      */
  566.     public function addItemDenuncia(\App\Entity\ItemDenuncia $itemDenuncia): \App\Entity\Admin
  567.     {
  568.         $this->__initializer__ && $this->__initializer__->__invoke($this'addItemDenuncia', [$itemDenuncia]);
  569.         return parent::addItemDenuncia($itemDenuncia);
  570.     }
  571.     /**
  572.      * {@inheritDoc}
  573.      */
  574.     public function removeItemDenuncia(\App\Entity\ItemDenuncia $itemDenuncia): \App\Entity\Admin
  575.     {
  576.         $this->__initializer__ && $this->__initializer__->__invoke($this'removeItemDenuncia', [$itemDenuncia]);
  577.         return parent::removeItemDenuncia($itemDenuncia);
  578.     }
  579.     /**
  580.      * {@inheritDoc}
  581.      */
  582.     public function getDenuncias(): \Doctrine\Common\Collections\Collection
  583.     {
  584.         $this->__initializer__ && $this->__initializer__->__invoke($this'getDenuncias', []);
  585.         return parent::getDenuncias();
  586.     }
  587.     /**
  588.      * {@inheritDoc}
  589.      */
  590.     public function addDenuncia(\App\Entity\Denuncia $denuncia): \App\Entity\Admin
  591.     {
  592.         $this->__initializer__ && $this->__initializer__->__invoke($this'addDenuncia', [$denuncia]);
  593.         return parent::addDenuncia($denuncia);
  594.     }
  595.     /**
  596.      * {@inheritDoc}
  597.      */
  598.     public function removeDenuncia(\App\Entity\Denuncia $denuncia): \App\Entity\Admin
  599.     {
  600.         $this->__initializer__ && $this->__initializer__->__invoke($this'removeDenuncia', [$denuncia]);
  601.         return parent::removeDenuncia($denuncia);
  602.     }
  603.     /**
  604.      * {@inheritDoc}
  605.      */
  606.     public function getPagosBancos(): \Doctrine\Common\Collections\Collection
  607.     {
  608.         $this->__initializer__ && $this->__initializer__->__invoke($this'getPagosBancos', []);
  609.         return parent::getPagosBancos();
  610.     }
  611.     /**
  612.      * {@inheritDoc}
  613.      */
  614.     public function addPagosBanco(\App\Entity\PagosBanco $pagosBanco): \App\Entity\Admin
  615.     {
  616.         $this->__initializer__ && $this->__initializer__->__invoke($this'addPagosBanco', [$pagosBanco]);
  617.         return parent::addPagosBanco($pagosBanco);
  618.     }
  619.     /**
  620.      * {@inheritDoc}
  621.      */
  622.     public function removePagosBanco(\App\Entity\PagosBanco $pagosBanco): \App\Entity\Admin
  623.     {
  624.         $this->__initializer__ && $this->__initializer__->__invoke($this'removePagosBanco', [$pagosBanco]);
  625.         return parent::removePagosBanco($pagosBanco);
  626.     }
  627.     /**
  628.      * {@inheritDoc}
  629.      */
  630.     public function getCertificado(): \Doctrine\Common\Collections\Collection
  631.     {
  632.         $this->__initializer__ && $this->__initializer__->__invoke($this'getCertificado', []);
  633.         return parent::getCertificado();
  634.     }
  635.     /**
  636.      * {@inheritDoc}
  637.      */
  638.     public function addCertificado(\App\Entity\CertificadoDeDeuda $certificado): \App\Entity\Admin
  639.     {
  640.         $this->__initializer__ && $this->__initializer__->__invoke($this'addCertificado', [$certificado]);
  641.         return parent::addCertificado($certificado);
  642.     }
  643.     /**
  644.      * {@inheritDoc}
  645.      */
  646.     public function removeCertificado(\App\Entity\CertificadoDeDeuda $certificado): \App\Entity\Admin
  647.     {
  648.         $this->__initializer__ && $this->__initializer__->__invoke($this'removeCertificado', [$certificado]);
  649.         return parent::removeCertificado($certificado);
  650.     }
  651.     /**
  652.      * {@inheritDoc}
  653.      */
  654.     public function getEmpleadoRecibos(): \Doctrine\Common\Collections\Collection
  655.     {
  656.         $this->__initializer__ && $this->__initializer__->__invoke($this'getEmpleadoRecibos', []);
  657.         return parent::getEmpleadoRecibos();
  658.     }
  659.     /**
  660.      * {@inheritDoc}
  661.      */
  662.     public function addEmpleadoRecibo(\App\Entity\EmpleadoRecibo $empleadoRecibo): \App\Entity\Admin
  663.     {
  664.         $this->__initializer__ && $this->__initializer__->__invoke($this'addEmpleadoRecibo', [$empleadoRecibo]);
  665.         return parent::addEmpleadoRecibo($empleadoRecibo);
  666.     }
  667.     /**
  668.      * {@inheritDoc}
  669.      */
  670.     public function removeEmpleadoRecibo(\App\Entity\EmpleadoRecibo $empleadoRecibo): \App\Entity\Admin
  671.     {
  672.         $this->__initializer__ && $this->__initializer__->__invoke($this'removeEmpleadoRecibo', [$empleadoRecibo]);
  673.         return parent::removeEmpleadoRecibo($empleadoRecibo);
  674.     }
  675.     /**
  676.      * {@inheritDoc}
  677.      */
  678.     public function getId(): ?int
  679.     {
  680.         if ($this->__isInitialized__ === false) {
  681.             return (int)  parent::getId();
  682.         }
  683.         $this->__initializer__ && $this->__initializer__->__invoke($this'getId', []);
  684.         return parent::getId();
  685.     }
  686.     /**
  687.      * {@inheritDoc}
  688.      */
  689.     public function getEmail(): ?string
  690.     {
  691.         $this->__initializer__ && $this->__initializer__->__invoke($this'getEmail', []);
  692.         return parent::getEmail();
  693.     }
  694.     /**
  695.      * {@inheritDoc}
  696.      */
  697.     public function setEmail(string $email): \App\Entity\User
  698.     {
  699.         $this->__initializer__ && $this->__initializer__->__invoke($this'setEmail', [$email]);
  700.         return parent::setEmail($email);
  701.     }
  702.     /**
  703.      * {@inheritDoc}
  704.      */
  705.     public function getUserIdentifier(): string
  706.     {
  707.         $this->__initializer__ && $this->__initializer__->__invoke($this'getUserIdentifier', []);
  708.         return parent::getUserIdentifier();
  709.     }
  710.     /**
  711.      * {@inheritDoc}
  712.      */
  713.     public function getUsername(): string
  714.     {
  715.         $this->__initializer__ && $this->__initializer__->__invoke($this'getUsername', []);
  716.         return parent::getUsername();
  717.     }
  718.     /**
  719.      * {@inheritDoc}
  720.      */
  721.     public function getRoles(): array
  722.     {
  723.         $this->__initializer__ && $this->__initializer__->__invoke($this'getRoles', []);
  724.         return parent::getRoles();
  725.     }
  726.     /**
  727.      * {@inheritDoc}
  728.      */
  729.     public function setRoles(array $roles): \App\Entity\User
  730.     {
  731.         $this->__initializer__ && $this->__initializer__->__invoke($this'setRoles', [$roles]);
  732.         return parent::setRoles($roles);
  733.     }
  734.     /**
  735.      * {@inheritDoc}
  736.      */
  737.     public function getPassword(): string
  738.     {
  739.         $this->__initializer__ && $this->__initializer__->__invoke($this'getPassword', []);
  740.         return parent::getPassword();
  741.     }
  742.     /**
  743.      * {@inheritDoc}
  744.      */
  745.     public function setPassword(string $password): \App\Entity\User
  746.     {
  747.         $this->__initializer__ && $this->__initializer__->__invoke($this'setPassword', [$password]);
  748.         return parent::setPassword($password);
  749.     }
  750.     /**
  751.      * {@inheritDoc}
  752.      */
  753.     public function getSalt(): ?string
  754.     {
  755.         $this->__initializer__ && $this->__initializer__->__invoke($this'getSalt', []);
  756.         return parent::getSalt();
  757.     }
  758.     /**
  759.      * {@inheritDoc}
  760.      */
  761.     public function eraseCredentials()
  762.     {
  763.         $this->__initializer__ && $this->__initializer__->__invoke($this'eraseCredentials', []);
  764.         return parent::eraseCredentials();
  765.     }
  766.     /**
  767.      * {@inheritDoc}
  768.      */
  769.     public function serialize()
  770.     {
  771.         $this->__initializer__ && $this->__initializer__->__invoke($this'serialize', []);
  772.         return parent::serialize();
  773.     }
  774.     /**
  775.      * {@inheritDoc}
  776.      */
  777.     public function unserialize($serialized)
  778.     {
  779.         $this->__initializer__ && $this->__initializer__->__invoke($this'unserialize', [$serialized]);
  780.         return parent::unserialize($serialized);
  781.     }
  782.     /**
  783.      * {@inheritDoc}
  784.      */
  785.     public function getIsVerified(): bool
  786.     {
  787.         $this->__initializer__ && $this->__initializer__->__invoke($this'getIsVerified', []);
  788.         return parent::getIsVerified();
  789.     }
  790.     /**
  791.      * {@inheritDoc}
  792.      */
  793.     public function setIsVerified(bool $isVerified): \App\Entity\User
  794.     {
  795.         $this->__initializer__ && $this->__initializer__->__invoke($this'setIsVerified', [$isVerified]);
  796.         return parent::setIsVerified($isVerified);
  797.     }
  798.     /**
  799.      * {@inheritDoc}
  800.      */
  801.     public function getNombre()
  802.     {
  803.         $this->__initializer__ && $this->__initializer__->__invoke($this'getNombre', []);
  804.         return parent::getNombre();
  805.     }
  806.     /**
  807.      * {@inheritDoc}
  808.      */
  809.     public function setNombre($nombre)
  810.     {
  811.         $this->__initializer__ && $this->__initializer__->__invoke($this'setNombre', [$nombre]);
  812.         return parent::setNombre($nombre);
  813.     }
  814.     /**
  815.      * {@inheritDoc}
  816.      */
  817.     public function getApellido()
  818.     {
  819.         $this->__initializer__ && $this->__initializer__->__invoke($this'getApellido', []);
  820.         return parent::getApellido();
  821.     }
  822.     /**
  823.      * {@inheritDoc}
  824.      */
  825.     public function setApellido($apellido)
  826.     {
  827.         $this->__initializer__ && $this->__initializer__->__invoke($this'setApellido', [$apellido]);
  828.         return parent::setApellido($apellido);
  829.     }
  830.     /**
  831.      * {@inheritDoc}
  832.      */
  833.     public function getEnabled()
  834.     {
  835.         $this->__initializer__ && $this->__initializer__->__invoke($this'getEnabled', []);
  836.         return parent::getEnabled();
  837.     }
  838.     /**
  839.      * {@inheritDoc}
  840.      */
  841.     public function setEnabled($enabled): \App\Entity\User
  842.     {
  843.         $this->__initializer__ && $this->__initializer__->__invoke($this'setEnabled', [$enabled]);
  844.         return parent::setEnabled($enabled);
  845.     }
  846.     /**
  847.      * {@inheritDoc}
  848.      */
  849.     public function getFoto()
  850.     {
  851.         $this->__initializer__ && $this->__initializer__->__invoke($this'getFoto', []);
  852.         return parent::getFoto();
  853.     }
  854.     /**
  855.      * {@inheritDoc}
  856.      */
  857.     public function setFoto($foto): \App\Entity\User
  858.     {
  859.         $this->__initializer__ && $this->__initializer__->__invoke($this'setFoto', [$foto]);
  860.         return parent::setFoto($foto);
  861.     }
  862.     /**
  863.      * {@inheritDoc}
  864.      */
  865.     public function __toString(): string
  866.     {
  867.         $this->__initializer__ && $this->__initializer__->__invoke($this'__toString', []);
  868.         return parent::__toString();
  869.     }
  870.     /**
  871.      * {@inheritDoc}
  872.      */
  873.     public function isGranted($role)
  874.     {
  875.         $this->__initializer__ && $this->__initializer__->__invoke($this'isGranted', [$role]);
  876.         return parent::isGranted($role);
  877.     }
  878.     /**
  879.      * {@inheritDoc}
  880.      */
  881.     public function getObservacions(): \Doctrine\Common\Collections\Collection
  882.     {
  883.         $this->__initializer__ && $this->__initializer__->__invoke($this'getObservacions', []);
  884.         return parent::getObservacions();
  885.     }
  886.     /**
  887.      * {@inheritDoc}
  888.      */
  889.     public function addObservacion(\App\Entity\Observacion $observacion): \App\Entity\User
  890.     {
  891.         $this->__initializer__ && $this->__initializer__->__invoke($this'addObservacion', [$observacion]);
  892.         return parent::addObservacion($observacion);
  893.     }
  894.     /**
  895.      * {@inheritDoc}
  896.      */
  897.     public function removeObservacion(\App\Entity\Observacion $observacion): \App\Entity\User
  898.     {
  899.         $this->__initializer__ && $this->__initializer__->__invoke($this'removeObservacion', [$observacion]);
  900.         return parent::removeObservacion($observacion);
  901.     }
  902.     /**
  903.      * {@inheritDoc}
  904.      */
  905.     public function getObservaciones(): \Doctrine\Common\Collections\Collection
  906.     {
  907.         $this->__initializer__ && $this->__initializer__->__invoke($this'getObservaciones', []);
  908.         return parent::getObservaciones();
  909.     }
  910.     /**
  911.      * {@inheritDoc}
  912.      */
  913.     public function addObservaciones(\App\Entity\Observacion $observacion): \App\Entity\User
  914.     {
  915.         $this->__initializer__ && $this->__initializer__->__invoke($this'addObservaciones', [$observacion]);
  916.         return parent::addObservaciones($observacion);
  917.     }
  918.     /**
  919.      * {@inheritDoc}
  920.      */
  921.     public function removeObservaciones(\App\Entity\Observacion $observacion): \App\Entity\User
  922.     {
  923.         $this->__initializer__ && $this->__initializer__->__invoke($this'removeObservaciones', [$observacion]);
  924.         return parent::removeObservaciones($observacion);
  925.     }
  926.     /**
  927.      * {@inheritDoc}
  928.      */
  929.     public function getEmpleado(): \Doctrine\Common\Collections\Collection
  930.     {
  931.         $this->__initializer__ && $this->__initializer__->__invoke($this'getEmpleado', []);
  932.         return parent::getEmpleado();
  933.     }
  934.     /**
  935.      * {@inheritDoc}
  936.      */
  937.     public function addEmpleado(\App\Entity\Empleado $empleado): \App\Entity\User
  938.     {
  939.         $this->__initializer__ && $this->__initializer__->__invoke($this'addEmpleado', [$empleado]);
  940.         return parent::addEmpleado($empleado);
  941.     }
  942.     /**
  943.      * {@inheritDoc}
  944.      */
  945.     public function removeEmpleado(\App\Entity\Empleado $empleado): \App\Entity\User
  946.     {
  947.         $this->__initializer__ && $this->__initializer__->__invoke($this'removeEmpleado', [$empleado]);
  948.         return parent::removeEmpleado($empleado);
  949.     }
  950.     /**
  951.      * {@inheritDoc}
  952.      */
  953.     public function getRegisterDate(): ?\DateTimeInterface
  954.     {
  955.         $this->__initializer__ && $this->__initializer__->__invoke($this'getRegisterDate', []);
  956.         return parent::getRegisterDate();
  957.     }
  958.     /**
  959.      * {@inheritDoc}
  960.      */
  961.     public function setRegisterDate(\DateTimeInterface $registerDate): \App\Entity\User
  962.     {
  963.         $this->__initializer__ && $this->__initializer__->__invoke($this'setRegisterDate', [$registerDate]);
  964.         return parent::setRegisterDate($registerDate);
  965.     }
  966.     /**
  967.      * {@inheritDoc}
  968.      */
  969.     public function getRegistroAccesos(): \Doctrine\Common\Collections\Collection
  970.     {
  971.         $this->__initializer__ && $this->__initializer__->__invoke($this'getRegistroAccesos', []);
  972.         return parent::getRegistroAccesos();
  973.     }
  974.     /**
  975.      * {@inheritDoc}
  976.      */
  977.     public function addRegistroAcceso(\App\Entity\RegistroAcceso $registroAcceso): \App\Entity\User
  978.     {
  979.         $this->__initializer__ && $this->__initializer__->__invoke($this'addRegistroAcceso', [$registroAcceso]);
  980.         return parent::addRegistroAcceso($registroAcceso);
  981.     }
  982.     /**
  983.      * {@inheritDoc}
  984.      */
  985.     public function removeRegistroAcceso(\App\Entity\RegistroAcceso $registroAcceso): \App\Entity\User
  986.     {
  987.         $this->__initializer__ && $this->__initializer__->__invoke($this'removeRegistroAcceso', [$registroAcceso]);
  988.         return parent::removeRegistroAcceso($registroAcceso);
  989.     }
  990.     /**
  991.      * {@inheritDoc}
  992.      */
  993.     public function getSucursals(): \Doctrine\Common\Collections\Collection
  994.     {
  995.         $this->__initializer__ && $this->__initializer__->__invoke($this'getSucursals', []);
  996.         return parent::getSucursals();
  997.     }
  998.     /**
  999.      * {@inheritDoc}
  1000.      */
  1001.     public function addSucursal(\App\Entity\Sucursal $sucursal): \App\Entity\User
  1002.     {
  1003.         $this->__initializer__ && $this->__initializer__->__invoke($this'addSucursal', [$sucursal]);
  1004.         return parent::addSucursal($sucursal);
  1005.     }
  1006.     /**
  1007.      * {@inheritDoc}
  1008.      */
  1009.     public function removeSucursal(\App\Entity\Sucursal $sucursal): \App\Entity\User
  1010.     {
  1011.         $this->__initializer__ && $this->__initializer__->__invoke($this'removeSucursal', [$sucursal]);
  1012.         return parent::removeSucursal($sucursal);
  1013.     }
  1014.     /**
  1015.      * {@inheritDoc}
  1016.      */
  1017.     public function getFamiliars(): \Doctrine\Common\Collections\Collection
  1018.     {
  1019.         $this->__initializer__ && $this->__initializer__->__invoke($this'getFamiliars', []);
  1020.         return parent::getFamiliars();
  1021.     }
  1022.     /**
  1023.      * {@inheritDoc}
  1024.      */
  1025.     public function addFamiliar(\App\Entity\Familiar $familiar): \App\Entity\User
  1026.     {
  1027.         $this->__initializer__ && $this->__initializer__->__invoke($this'addFamiliar', [$familiar]);
  1028.         return parent::addFamiliar($familiar);
  1029.     }
  1030.     /**
  1031.      * {@inheritDoc}
  1032.      */
  1033.     public function removeFamiliar(\App\Entity\Familiar $familiar): \App\Entity\User
  1034.     {
  1035.         $this->__initializer__ && $this->__initializer__->__invoke($this'removeFamiliar', [$familiar]);
  1036.         return parent::removeFamiliar($familiar);
  1037.     }
  1038.     /**
  1039.      * {@inheritDoc}
  1040.      */
  1041.     public function getBoletas(): \Doctrine\Common\Collections\Collection
  1042.     {
  1043.         $this->__initializer__ && $this->__initializer__->__invoke($this'getBoletas', []);
  1044.         return parent::getBoletas();
  1045.     }
  1046.     /**
  1047.      * {@inheritDoc}
  1048.      */
  1049.     public function getContadorMensaje(): \Doctrine\Common\Collections\Collection
  1050.     {
  1051.         $this->__initializer__ && $this->__initializer__->__invoke($this'getContadorMensaje', []);
  1052.         return parent::getContadorMensaje();
  1053.     }
  1054.     /**
  1055.      * {@inheritDoc}
  1056.      */
  1057.     public function addContadorMensaje(\App\Entity\ContadorMensaje $contadorMensaje): \App\Entity\User
  1058.     {
  1059.         $this->__initializer__ && $this->__initializer__->__invoke($this'addContadorMensaje', [$contadorMensaje]);
  1060.         return parent::addContadorMensaje($contadorMensaje);
  1061.     }
  1062.     /**
  1063.      * {@inheritDoc}
  1064.      */
  1065.     public function removeContadorMensaje(\App\Entity\ContadorMensaje $contadorMensaje): \App\Entity\User
  1066.     {
  1067.         $this->__initializer__ && $this->__initializer__->__invoke($this'removeContadorMensaje', [$contadorMensaje]);
  1068.         return parent::removeContadorMensaje($contadorMensaje);
  1069.     }
  1070.     /**
  1071.      * {@inheritDoc}
  1072.      */
  1073.     public function getId_viejo()
  1074.     {
  1075.         $this->__initializer__ && $this->__initializer__->__invoke($this'getId_viejo', []);
  1076.         return parent::getId_viejo();
  1077.     }
  1078.     /**
  1079.      * {@inheritDoc}
  1080.      */
  1081.     public function setId_viejo($id_viejo)
  1082.     {
  1083.         $this->__initializer__ && $this->__initializer__->__invoke($this'setId_viejo', [$id_viejo]);
  1084.         return parent::setId_viejo($id_viejo);
  1085.     }
  1086.     /**
  1087.      * {@inheritDoc}
  1088.      */
  1089.     public function getEmpleadoEmpresaSucursals(): \Doctrine\Common\Collections\Collection
  1090.     {
  1091.         $this->__initializer__ && $this->__initializer__->__invoke($this'getEmpleadoEmpresaSucursals', []);
  1092.         return parent::getEmpleadoEmpresaSucursals();
  1093.     }
  1094.     /**
  1095.      * {@inheritDoc}
  1096.      */
  1097.     public function addEmpleadoEmpresaSucursal(\App\Entity\EmpleadoEmpresaSucursal $empleadoEmpresaSucursal): \App\Entity\User
  1098.     {
  1099.         $this->__initializer__ && $this->__initializer__->__invoke($this'addEmpleadoEmpresaSucursal', [$empleadoEmpresaSucursal]);
  1100.         return parent::addEmpleadoEmpresaSucursal($empleadoEmpresaSucursal);
  1101.     }
  1102.     /**
  1103.      * {@inheritDoc}
  1104.      */
  1105.     public function removeEmpleadoEmpresaSucursal(\App\Entity\EmpleadoEmpresaSucursal $empleadoEmpresaSucursal): \App\Entity\User
  1106.     {
  1107.         $this->__initializer__ && $this->__initializer__->__invoke($this'removeEmpleadoEmpresaSucursal', [$empleadoEmpresaSucursal]);
  1108.         return parent::removeEmpleadoEmpresaSucursal($empleadoEmpresaSucursal);
  1109.     }
  1110. }