var/cache/dev/doctrine/orm/Proxies/__CG__AppEntityConsumers.php line 473

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 Consumers extends \App\Entity\Consumers 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__''id''data_alta''nom''cognoms''cognom1''cognom2''direccio''cp''poblacio''email''data_naixement''telefon''clau''idAux''dni''nom_empresa''' "\0" 'App\\Entity\\Consumers' "\0" 'pai_id''nif_empresa''direccio_empresa''cp_empresa''poblacio_empresa''provincia_empresa''comentaris''' "\0" 'App\\Entity\\Consumers' "\0" 'usuari''' "\0" 'App\\Entity\\Consumers' "\0" 'historic''abonat''familia_4i''origen_entrada''resposta_4i''wtp''tipus''imatge''imatge_aux''documento''documento_aux''resident''resident_aux''familia_nombrosa''familia_nombrosa_aux''' "\0" 'App\\Entity\\Consumers' "\0" 'modificat''customer_id_proj''customer_id_pos''customer_id_num''company_proj_no''company_pos_no''company_num''customer_account_no''validate_hash''resposta_dci4_connect''validate_token''' "\0" 'App\\Entity\\Consumers' "\0" 'descompte'];
  53.         }
  54.         return ['__isInitialized__''id''data_alta''nom''cognoms''cognom1''cognom2''direccio''cp''poblacio''email''data_naixement''telefon''clau''idAux''dni''nom_empresa''' "\0" 'App\\Entity\\Consumers' "\0" 'pai_id''nif_empresa''direccio_empresa''cp_empresa''poblacio_empresa''provincia_empresa''comentaris''' "\0" 'App\\Entity\\Consumers' "\0" 'usuari''' "\0" 'App\\Entity\\Consumers' "\0" 'historic''abonat''familia_4i''origen_entrada''resposta_4i''wtp''tipus''imatge''imatge_aux''documento''documento_aux''resident''resident_aux''familia_nombrosa''familia_nombrosa_aux''' "\0" 'App\\Entity\\Consumers' "\0" 'modificat''customer_id_proj''customer_id_pos''customer_id_num''company_proj_no''company_pos_no''company_num''customer_account_no''validate_hash''resposta_dci4_connect''validate_token''' "\0" 'App\\Entity\\Consumers' "\0" 'descompte'];
  55.     }
  56.     /**
  57.      * 
  58.      */
  59.     public function __wakeup()
  60.     {
  61.         if ( ! $this->__isInitialized__) {
  62.             $this->__initializer__ = function (Consumers $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 __toString(): string
  151.     {
  152.         $this->__initializer__ && $this->__initializer__->__invoke($this'__toString', []);
  153.         return parent::__toString();
  154.     }
  155.     /**
  156.      * {@inheritDoc}
  157.      */
  158.     public function setImatge($imatge)
  159.     {
  160.         $this->__initializer__ && $this->__initializer__->__invoke($this'setImatge', [$imatge]);
  161.         return parent::setImatge($imatge);
  162.     }
  163.     /**
  164.      * {@inheritDoc}
  165.      */
  166.     public function getImatge()
  167.     {
  168.         $this->__initializer__ && $this->__initializer__->__invoke($this'getImatge', []);
  169.         return parent::getImatge();
  170.     }
  171.     /**
  172.      * {@inheritDoc}
  173.      */
  174.     public function setImatgeAux(\Symfony\Component\HttpFoundation\File\UploadedFile $imatge NULL)
  175.     {
  176.         $this->__initializer__ && $this->__initializer__->__invoke($this'setImatgeAux', [$imatge]);
  177.         return parent::setImatgeAux($imatge);
  178.     }
  179.     /**
  180.      * {@inheritDoc}
  181.      */
  182.     public function getImatgeAux()
  183.     {
  184.         $this->__initializer__ && $this->__initializer__->__invoke($this'getImatgeAux', []);
  185.         return parent::getImatgeAux();
  186.     }
  187.     /**
  188.      * {@inheritDoc}
  189.      */
  190.     public function preUploadImatge()
  191.     {
  192.         $this->__initializer__ && $this->__initializer__->__invoke($this'preUploadImatge', []);
  193.         return parent::preUploadImatge();
  194.     }
  195.     /**
  196.      * {@inheritDoc}
  197.      */
  198.     public function setDocumento($document)
  199.     {
  200.         $this->__initializer__ && $this->__initializer__->__invoke($this'setDocumento', [$document]);
  201.         return parent::setDocumento($document);
  202.     }
  203.     /**
  204.      * {@inheritDoc}
  205.      */
  206.     public function getDocumento()
  207.     {
  208.         $this->__initializer__ && $this->__initializer__->__invoke($this'getDocumento', []);
  209.         return parent::getDocumento();
  210.     }
  211.     /**
  212.      * {@inheritDoc}
  213.      */
  214.     public function setDocumentoAux(\Symfony\Component\HttpFoundation\File\UploadedFile $document NULL)
  215.     {
  216.         $this->__initializer__ && $this->__initializer__->__invoke($this'setDocumentoAux', [$document]);
  217.         return parent::setDocumentoAux($document);
  218.     }
  219.     /**
  220.      * {@inheritDoc}
  221.      */
  222.     public function getDocumentoAux()
  223.     {
  224.         $this->__initializer__ && $this->__initializer__->__invoke($this'getDocumentoAux', []);
  225.         return parent::getDocumentoAux();
  226.     }
  227.     /**
  228.      * {@inheritDoc}
  229.      */
  230.     public function preUploadDocumento()
  231.     {
  232.         $this->__initializer__ && $this->__initializer__->__invoke($this'preUploadDocumento', []);
  233.         return parent::preUploadDocumento();
  234.     }
  235.     /**
  236.      * {@inheritDoc}
  237.      */
  238.     public function setResident($resident)
  239.     {
  240.         $this->__initializer__ && $this->__initializer__->__invoke($this'setResident', [$resident]);
  241.         return parent::setResident($resident);
  242.     }
  243.     /**
  244.      * {@inheritDoc}
  245.      */
  246.     public function getResident()
  247.     {
  248.         $this->__initializer__ && $this->__initializer__->__invoke($this'getResident', []);
  249.         return parent::getResident();
  250.     }
  251.     /**
  252.      * {@inheritDoc}
  253.      */
  254.     public function setResidentAux(\Symfony\Component\HttpFoundation\File\UploadedFile $resident NULL)
  255.     {
  256.         $this->__initializer__ && $this->__initializer__->__invoke($this'setResidentAux', [$resident]);
  257.         return parent::setResidentAux($resident);
  258.     }
  259.     /**
  260.      * {@inheritDoc}
  261.      */
  262.     public function getResidentAux()
  263.     {
  264.         $this->__initializer__ && $this->__initializer__->__invoke($this'getResidentAux', []);
  265.         return parent::getResidentAux();
  266.     }
  267.     /**
  268.      * {@inheritDoc}
  269.      */
  270.     public function preUploadResident()
  271.     {
  272.         $this->__initializer__ && $this->__initializer__->__invoke($this'preUploadResident', []);
  273.         return parent::preUploadResident();
  274.     }
  275.     /**
  276.      * {@inheritDoc}
  277.      */
  278.     public function setFamiliaNombrosa($familia_nombrosa)
  279.     {
  280.         $this->__initializer__ && $this->__initializer__->__invoke($this'setFamiliaNombrosa', [$familia_nombrosa]);
  281.         return parent::setFamiliaNombrosa($familia_nombrosa);
  282.     }
  283.     /**
  284.      * {@inheritDoc}
  285.      */
  286.     public function getFamiliaNombrosa()
  287.     {
  288.         $this->__initializer__ && $this->__initializer__->__invoke($this'getFamiliaNombrosa', []);
  289.         return parent::getFamiliaNombrosa();
  290.     }
  291.     /**
  292.      * {@inheritDoc}
  293.      */
  294.     public function setFamiliaNombrosaAux(\Symfony\Component\HttpFoundation\File\UploadedFile $familia_nombrosa NULL)
  295.     {
  296.         $this->__initializer__ && $this->__initializer__->__invoke($this'setFamiliaNombrosaAux', [$familia_nombrosa]);
  297.         return parent::setFamiliaNombrosaAux($familia_nombrosa);
  298.     }
  299.     /**
  300.      * {@inheritDoc}
  301.      */
  302.     public function getFamiliaNombrosaAux()
  303.     {
  304.         $this->__initializer__ && $this->__initializer__->__invoke($this'getFamiliaNombrosaAux', []);
  305.         return parent::getFamiliaNombrosaAux();
  306.     }
  307.     /**
  308.      * {@inheritDoc}
  309.      */
  310.     public function preUploadFamiliaNombrosa()
  311.     {
  312.         $this->__initializer__ && $this->__initializer__->__invoke($this'preUploadFamiliaNombrosa', []);
  313.         return parent::preUploadFamiliaNombrosa();
  314.     }
  315.     /**
  316.      * {@inheritDoc}
  317.      */
  318.     public function getUploadRootDir()
  319.     {
  320.         $this->__initializer__ && $this->__initializer__->__invoke($this'getUploadRootDir', []);
  321.         return parent::getUploadRootDir();
  322.     }
  323.     /**
  324.      * {@inheritDoc}
  325.      */
  326.     public function getId()
  327.     {
  328.         if ($this->__isInitialized__ === false) {
  329.             return (int)  parent::getId();
  330.         }
  331.         $this->__initializer__ && $this->__initializer__->__invoke($this'getId', []);
  332.         return parent::getId();
  333.     }
  334.     /**
  335.      * {@inheritDoc}
  336.      */
  337.     public function setDataAlta($dataAlta)
  338.     {
  339.         $this->__initializer__ && $this->__initializer__->__invoke($this'setDataAlta', [$dataAlta]);
  340.         return parent::setDataAlta($dataAlta);
  341.     }
  342.     /**
  343.      * {@inheritDoc}
  344.      */
  345.     public function getDataAlta()
  346.     {
  347.         $this->__initializer__ && $this->__initializer__->__invoke($this'getDataAlta', []);
  348.         return parent::getDataAlta();
  349.     }
  350.     /**
  351.      * {@inheritDoc}
  352.      */
  353.     public function setNom($nom)
  354.     {
  355.         $this->__initializer__ && $this->__initializer__->__invoke($this'setNom', [$nom]);
  356.         return parent::setNom($nom);
  357.     }
  358.     /**
  359.      * {@inheritDoc}
  360.      */
  361.     public function getNom()
  362.     {
  363.         $this->__initializer__ && $this->__initializer__->__invoke($this'getNom', []);
  364.         return parent::getNom();
  365.     }
  366.     /**
  367.      * {@inheritDoc}
  368.      */
  369.     public function setCognoms($cognoms)
  370.     {
  371.         $this->__initializer__ && $this->__initializer__->__invoke($this'setCognoms', [$cognoms]);
  372.         return parent::setCognoms($cognoms);
  373.     }
  374.     /**
  375.      * {@inheritDoc}
  376.      */
  377.     public function getCognoms()
  378.     {
  379.         $this->__initializer__ && $this->__initializer__->__invoke($this'getCognoms', []);
  380.         return parent::getCognoms();
  381.     }
  382.     /**
  383.      * {@inheritDoc}
  384.      */
  385.     public function setDireccio($direccio)
  386.     {
  387.         $this->__initializer__ && $this->__initializer__->__invoke($this'setDireccio', [$direccio]);
  388.         return parent::setDireccio($direccio);
  389.     }
  390.     /**
  391.      * {@inheritDoc}
  392.      */
  393.     public function getDireccio()
  394.     {
  395.         $this->__initializer__ && $this->__initializer__->__invoke($this'getDireccio', []);
  396.         return parent::getDireccio();
  397.     }
  398.     /**
  399.      * {@inheritDoc}
  400.      */
  401.     public function setCp($cp)
  402.     {
  403.         $this->__initializer__ && $this->__initializer__->__invoke($this'setCp', [$cp]);
  404.         return parent::setCp($cp);
  405.     }
  406.     /**
  407.      * {@inheritDoc}
  408.      */
  409.     public function getCp()
  410.     {
  411.         $this->__initializer__ && $this->__initializer__->__invoke($this'getCp', []);
  412.         return parent::getCp();
  413.     }
  414.     /**
  415.      * {@inheritDoc}
  416.      */
  417.     public function setPoblacio($poblacio)
  418.     {
  419.         $this->__initializer__ && $this->__initializer__->__invoke($this'setPoblacio', [$poblacio]);
  420.         return parent::setPoblacio($poblacio);
  421.     }
  422.     /**
  423.      * {@inheritDoc}
  424.      */
  425.     public function getPoblacio()
  426.     {
  427.         $this->__initializer__ && $this->__initializer__->__invoke($this'getPoblacio', []);
  428.         return parent::getPoblacio();
  429.     }
  430.     /**
  431.      * {@inheritDoc}
  432.      */
  433.     public function setEmail($email)
  434.     {
  435.         $this->__initializer__ && $this->__initializer__->__invoke($this'setEmail', [$email]);
  436.         return parent::setEmail($email);
  437.     }
  438.     /**
  439.      * {@inheritDoc}
  440.      */
  441.     public function getEmail()
  442.     {
  443.         $this->__initializer__ && $this->__initializer__->__invoke($this'getEmail', []);
  444.         return parent::getEmail();
  445.     }
  446.     /**
  447.      * {@inheritDoc}
  448.      */
  449.     public function setDataNaixement($dataNaixement)
  450.     {
  451.         $this->__initializer__ && $this->__initializer__->__invoke($this'setDataNaixement', [$dataNaixement]);
  452.         return parent::setDataNaixement($dataNaixement);
  453.     }
  454.     /**
  455.      * {@inheritDoc}
  456.      */
  457.     public function getDataNaixement()
  458.     {
  459.         $this->__initializer__ && $this->__initializer__->__invoke($this'getDataNaixement', []);
  460.         return parent::getDataNaixement();
  461.     }
  462.     /**
  463.      * {@inheritDoc}
  464.      */
  465.     public function setTelefon($telefon)
  466.     {
  467.         $this->__initializer__ && $this->__initializer__->__invoke($this'setTelefon', [$telefon]);
  468.         return parent::setTelefon($telefon);
  469.     }
  470.     /**
  471.      * {@inheritDoc}
  472.      */
  473.     public function getTelefon()
  474.     {
  475.         $this->__initializer__ && $this->__initializer__->__invoke($this'getTelefon', []);
  476.         return parent::getTelefon();
  477.     }
  478.     /**
  479.      * {@inheritDoc}
  480.      */
  481.     public function setClau($clau)
  482.     {
  483.         $this->__initializer__ && $this->__initializer__->__invoke($this'setClau', [$clau]);
  484.         return parent::setClau($clau);
  485.     }
  486.     /**
  487.      * {@inheritDoc}
  488.      */
  489.     public function getClau()
  490.     {
  491.         $this->__initializer__ && $this->__initializer__->__invoke($this'getClau', []);
  492.         return parent::getClau();
  493.     }
  494.     /**
  495.      * {@inheritDoc}
  496.      */
  497.     public function setIdAux($idAux)
  498.     {
  499.         $this->__initializer__ && $this->__initializer__->__invoke($this'setIdAux', [$idAux]);
  500.         return parent::setIdAux($idAux);
  501.     }
  502.     /**
  503.      * {@inheritDoc}
  504.      */
  505.     public function getIdAux()
  506.     {
  507.         $this->__initializer__ && $this->__initializer__->__invoke($this'getIdAux', []);
  508.         return parent::getIdAux();
  509.     }
  510.     /**
  511.      * {@inheritDoc}
  512.      */
  513.     public function setDni($dni)
  514.     {
  515.         $this->__initializer__ && $this->__initializer__->__invoke($this'setDni', [$dni]);
  516.         return parent::setDni($dni);
  517.     }
  518.     /**
  519.      * {@inheritDoc}
  520.      */
  521.     public function getDni()
  522.     {
  523.         $this->__initializer__ && $this->__initializer__->__invoke($this'getDni', []);
  524.         return parent::getDni();
  525.     }
  526.     /**
  527.      * {@inheritDoc}
  528.      */
  529.     public function setNomEmpresa($nomEmpresa)
  530.     {
  531.         $this->__initializer__ && $this->__initializer__->__invoke($this'setNomEmpresa', [$nomEmpresa]);
  532.         return parent::setNomEmpresa($nomEmpresa);
  533.     }
  534.     /**
  535.      * {@inheritDoc}
  536.      */
  537.     public function getNomEmpresa()
  538.     {
  539.         $this->__initializer__ && $this->__initializer__->__invoke($this'getNomEmpresa', []);
  540.         return parent::getNomEmpresa();
  541.     }
  542.     /**
  543.      * {@inheritDoc}
  544.      */
  545.     public function setNifEmpresa($nifEmpresa)
  546.     {
  547.         $this->__initializer__ && $this->__initializer__->__invoke($this'setNifEmpresa', [$nifEmpresa]);
  548.         return parent::setNifEmpresa($nifEmpresa);
  549.     }
  550.     /**
  551.      * {@inheritDoc}
  552.      */
  553.     public function getNifEmpresa()
  554.     {
  555.         $this->__initializer__ && $this->__initializer__->__invoke($this'getNifEmpresa', []);
  556.         return parent::getNifEmpresa();
  557.     }
  558.     /**
  559.      * {@inheritDoc}
  560.      */
  561.     public function setDireccioEmpresa($direccioEmpresa)
  562.     {
  563.         $this->__initializer__ && $this->__initializer__->__invoke($this'setDireccioEmpresa', [$direccioEmpresa]);
  564.         return parent::setDireccioEmpresa($direccioEmpresa);
  565.     }
  566.     /**
  567.      * {@inheritDoc}
  568.      */
  569.     public function getDireccioEmpresa()
  570.     {
  571.         $this->__initializer__ && $this->__initializer__->__invoke($this'getDireccioEmpresa', []);
  572.         return parent::getDireccioEmpresa();
  573.     }
  574.     /**
  575.      * {@inheritDoc}
  576.      */
  577.     public function setCpEmpresa($cpEmpresa)
  578.     {
  579.         $this->__initializer__ && $this->__initializer__->__invoke($this'setCpEmpresa', [$cpEmpresa]);
  580.         return parent::setCpEmpresa($cpEmpresa);
  581.     }
  582.     /**
  583.      * {@inheritDoc}
  584.      */
  585.     public function getCpEmpresa()
  586.     {
  587.         $this->__initializer__ && $this->__initializer__->__invoke($this'getCpEmpresa', []);
  588.         return parent::getCpEmpresa();
  589.     }
  590.     /**
  591.      * {@inheritDoc}
  592.      */
  593.     public function setPoblacioEmpresa($poblacioEmpresa)
  594.     {
  595.         $this->__initializer__ && $this->__initializer__->__invoke($this'setPoblacioEmpresa', [$poblacioEmpresa]);
  596.         return parent::setPoblacioEmpresa($poblacioEmpresa);
  597.     }
  598.     /**
  599.      * {@inheritDoc}
  600.      */
  601.     public function getPoblacioEmpresa()
  602.     {
  603.         $this->__initializer__ && $this->__initializer__->__invoke($this'getPoblacioEmpresa', []);
  604.         return parent::getPoblacioEmpresa();
  605.     }
  606.     /**
  607.      * {@inheritDoc}
  608.      */
  609.     public function setCognom1($cognom1)
  610.     {
  611.         $this->__initializer__ && $this->__initializer__->__invoke($this'setCognom1', [$cognom1]);
  612.         return parent::setCognom1($cognom1);
  613.     }
  614.     /**
  615.      * {@inheritDoc}
  616.      */
  617.     public function getCognom1()
  618.     {
  619.         $this->__initializer__ && $this->__initializer__->__invoke($this'getCognom1', []);
  620.         return parent::getCognom1();
  621.     }
  622.     /**
  623.      * {@inheritDoc}
  624.      */
  625.     public function setCognom2($cognom2)
  626.     {
  627.         $this->__initializer__ && $this->__initializer__->__invoke($this'setCognom2', [$cognom2]);
  628.         return parent::setCognom2($cognom2);
  629.     }
  630.     /**
  631.      * {@inheritDoc}
  632.      */
  633.     public function getCognom2()
  634.     {
  635.         $this->__initializer__ && $this->__initializer__->__invoke($this'getCognom2', []);
  636.         return parent::getCognom2();
  637.     }
  638.     /**
  639.      * {@inheritDoc}
  640.      */
  641.     public function setComentaris($comentaris)
  642.     {
  643.         $this->__initializer__ && $this->__initializer__->__invoke($this'setComentaris', [$comentaris]);
  644.         return parent::setComentaris($comentaris);
  645.     }
  646.     /**
  647.      * {@inheritDoc}
  648.      */
  649.     public function getComentaris()
  650.     {
  651.         $this->__initializer__ && $this->__initializer__->__invoke($this'getComentaris', []);
  652.         return parent::getComentaris();
  653.     }
  654.     /**
  655.      * {@inheritDoc}
  656.      */
  657.     public function setUsuari(\App\Entity\Usuari $usuari NULL)
  658.     {
  659.         $this->__initializer__ && $this->__initializer__->__invoke($this'setUsuari', [$usuari]);
  660.         return parent::setUsuari($usuari);
  661.     }
  662.     /**
  663.      * {@inheritDoc}
  664.      */
  665.     public function getUsuari()
  666.     {
  667.         $this->__initializer__ && $this->__initializer__->__invoke($this'getUsuari', []);
  668.         return parent::getUsuari();
  669.     }
  670.     /**
  671.      * {@inheritDoc}
  672.      */
  673.     public function setHistoric($historic)
  674.     {
  675.         $this->__initializer__ && $this->__initializer__->__invoke($this'setHistoric', [$historic]);
  676.         return parent::setHistoric($historic);
  677.     }
  678.     /**
  679.      * {@inheritDoc}
  680.      */
  681.     public function getHistoric()
  682.     {
  683.         $this->__initializer__ && $this->__initializer__->__invoke($this'getHistoric', []);
  684.         return parent::getHistoric();
  685.     }
  686.     /**
  687.      * {@inheritDoc}
  688.      */
  689.     public function setAbonat($abonat)
  690.     {
  691.         $this->__initializer__ && $this->__initializer__->__invoke($this'setAbonat', [$abonat]);
  692.         return parent::setAbonat($abonat);
  693.     }
  694.     /**
  695.      * {@inheritDoc}
  696.      */
  697.     public function getAbonat()
  698.     {
  699.         $this->__initializer__ && $this->__initializer__->__invoke($this'getAbonat', []);
  700.         return parent::getAbonat();
  701.     }
  702.     /**
  703.      * {@inheritDoc}
  704.      */
  705.     public function setOrigenEntrada($origenEntrada)
  706.     {
  707.         $this->__initializer__ && $this->__initializer__->__invoke($this'setOrigenEntrada', [$origenEntrada]);
  708.         return parent::setOrigenEntrada($origenEntrada);
  709.     }
  710.     /**
  711.      * {@inheritDoc}
  712.      */
  713.     public function getOrigenEntrada()
  714.     {
  715.         $this->__initializer__ && $this->__initializer__->__invoke($this'getOrigenEntrada', []);
  716.         return parent::getOrigenEntrada();
  717.     }
  718.     /**
  719.      * {@inheritDoc}
  720.      */
  721.     public function setResposta4i($resposta4i)
  722.     {
  723.         $this->__initializer__ && $this->__initializer__->__invoke($this'setResposta4i', [$resposta4i]);
  724.         return parent::setResposta4i($resposta4i);
  725.     }
  726.     /**
  727.      * {@inheritDoc}
  728.      */
  729.     public function getResposta4i()
  730.     {
  731.         $this->__initializer__ && $this->__initializer__->__invoke($this'getResposta4i', []);
  732.         return parent::getResposta4i();
  733.     }
  734.     /**
  735.      * {@inheritDoc}
  736.      */
  737.     public function setFamilia4i($familia4i)
  738.     {
  739.         $this->__initializer__ && $this->__initializer__->__invoke($this'setFamilia4i', [$familia4i]);
  740.         return parent::setFamilia4i($familia4i);
  741.     }
  742.     /**
  743.      * {@inheritDoc}
  744.      */
  745.     public function getFamilia4i()
  746.     {
  747.         $this->__initializer__ && $this->__initializer__->__invoke($this'getFamilia4i', []);
  748.         return parent::getFamilia4i();
  749.     }
  750.     /**
  751.      * {@inheritDoc}
  752.      */
  753.     public function setWtp($wtp)
  754.     {
  755.         $this->__initializer__ && $this->__initializer__->__invoke($this'setWtp', [$wtp]);
  756.         return parent::setWtp($wtp);
  757.     }
  758.     /**
  759.      * {@inheritDoc}
  760.      */
  761.     public function getWtp()
  762.     {
  763.         $this->__initializer__ && $this->__initializer__->__invoke($this'getWtp', []);
  764.         return parent::getWtp();
  765.     }
  766.     /**
  767.      * {@inheritDoc}
  768.      */
  769.     public function setTipus($tipus)
  770.     {
  771.         $this->__initializer__ && $this->__initializer__->__invoke($this'setTipus', [$tipus]);
  772.         return parent::setTipus($tipus);
  773.     }
  774.     /**
  775.      * {@inheritDoc}
  776.      */
  777.     public function getTipus()
  778.     {
  779.         $this->__initializer__ && $this->__initializer__->__invoke($this'getTipus', []);
  780.         return parent::getTipus();
  781.     }
  782.     /**
  783.      * {@inheritDoc}
  784.      */
  785.     public function setModificat($modificat)
  786.     {
  787.         $this->__initializer__ && $this->__initializer__->__invoke($this'setModificat', [$modificat]);
  788.         return parent::setModificat($modificat);
  789.     }
  790.     /**
  791.      * {@inheritDoc}
  792.      */
  793.     public function getModificat()
  794.     {
  795.         $this->__initializer__ && $this->__initializer__->__invoke($this'getModificat', []);
  796.         return parent::getModificat();
  797.     }
  798.     /**
  799.      * {@inheritDoc}
  800.      */
  801.     public function setCustomerIdProj($customerIdProj)
  802.     {
  803.         $this->__initializer__ && $this->__initializer__->__invoke($this'setCustomerIdProj', [$customerIdProj]);
  804.         return parent::setCustomerIdProj($customerIdProj);
  805.     }
  806.     /**
  807.      * {@inheritDoc}
  808.      */
  809.     public function getCustomerIdProj()
  810.     {
  811.         $this->__initializer__ && $this->__initializer__->__invoke($this'getCustomerIdProj', []);
  812.         return parent::getCustomerIdProj();
  813.     }
  814.     /**
  815.      * {@inheritDoc}
  816.      */
  817.     public function setCustomerIdPos($customerIdPos)
  818.     {
  819.         $this->__initializer__ && $this->__initializer__->__invoke($this'setCustomerIdPos', [$customerIdPos]);
  820.         return parent::setCustomerIdPos($customerIdPos);
  821.     }
  822.     /**
  823.      * {@inheritDoc}
  824.      */
  825.     public function getCustomerIdPos()
  826.     {
  827.         $this->__initializer__ && $this->__initializer__->__invoke($this'getCustomerIdPos', []);
  828.         return parent::getCustomerIdPos();
  829.     }
  830.     /**
  831.      * {@inheritDoc}
  832.      */
  833.     public function setCustomerIdNum($customerIdNum)
  834.     {
  835.         $this->__initializer__ && $this->__initializer__->__invoke($this'setCustomerIdNum', [$customerIdNum]);
  836.         return parent::setCustomerIdNum($customerIdNum);
  837.     }
  838.     /**
  839.      * {@inheritDoc}
  840.      */
  841.     public function getCustomerIdNum()
  842.     {
  843.         $this->__initializer__ && $this->__initializer__->__invoke($this'getCustomerIdNum', []);
  844.         return parent::getCustomerIdNum();
  845.     }
  846.     /**
  847.      * {@inheritDoc}
  848.      */
  849.     public function setPaiId(\App\Entity\Paisos $paiId NULL)
  850.     {
  851.         $this->__initializer__ && $this->__initializer__->__invoke($this'setPaiId', [$paiId]);
  852.         return parent::setPaiId($paiId);
  853.     }
  854.     /**
  855.      * {@inheritDoc}
  856.      */
  857.     public function getPaiId()
  858.     {
  859.         $this->__initializer__ && $this->__initializer__->__invoke($this'getPaiId', []);
  860.         return parent::getPaiId();
  861.     }
  862.     /**
  863.      * {@inheritDoc}
  864.      */
  865.     public function setCompanyProjNo($companyProjNo)
  866.     {
  867.         $this->__initializer__ && $this->__initializer__->__invoke($this'setCompanyProjNo', [$companyProjNo]);
  868.         return parent::setCompanyProjNo($companyProjNo);
  869.     }
  870.     /**
  871.      * {@inheritDoc}
  872.      */
  873.     public function getCompanyProjNo()
  874.     {
  875.         $this->__initializer__ && $this->__initializer__->__invoke($this'getCompanyProjNo', []);
  876.         return parent::getCompanyProjNo();
  877.     }
  878.     /**
  879.      * {@inheritDoc}
  880.      */
  881.     public function setCompanyPosNo($companyPosNo)
  882.     {
  883.         $this->__initializer__ && $this->__initializer__->__invoke($this'setCompanyPosNo', [$companyPosNo]);
  884.         return parent::setCompanyPosNo($companyPosNo);
  885.     }
  886.     /**
  887.      * {@inheritDoc}
  888.      */
  889.     public function getCompanyPosNo()
  890.     {
  891.         $this->__initializer__ && $this->__initializer__->__invoke($this'getCompanyPosNo', []);
  892.         return parent::getCompanyPosNo();
  893.     }
  894.     /**
  895.      * {@inheritDoc}
  896.      */
  897.     public function setCompanyNum($companyNum)
  898.     {
  899.         $this->__initializer__ && $this->__initializer__->__invoke($this'setCompanyNum', [$companyNum]);
  900.         return parent::setCompanyNum($companyNum);
  901.     }
  902.     /**
  903.      * {@inheritDoc}
  904.      */
  905.     public function getCompanyNum()
  906.     {
  907.         $this->__initializer__ && $this->__initializer__->__invoke($this'getCompanyNum', []);
  908.         return parent::getCompanyNum();
  909.     }
  910.     /**
  911.      * {@inheritDoc}
  912.      */
  913.     public function setProvinciaEmpresa($provinciaEmpresa)
  914.     {
  915.         $this->__initializer__ && $this->__initializer__->__invoke($this'setProvinciaEmpresa', [$provinciaEmpresa]);
  916.         return parent::setProvinciaEmpresa($provinciaEmpresa);
  917.     }
  918.     /**
  919.      * {@inheritDoc}
  920.      */
  921.     public function getProvinciaEmpresa()
  922.     {
  923.         $this->__initializer__ && $this->__initializer__->__invoke($this'getProvinciaEmpresa', []);
  924.         return parent::getProvinciaEmpresa();
  925.     }
  926.     /**
  927.      * {@inheritDoc}
  928.      */
  929.     public function setCustomerAccountNo($customerAccountNo)
  930.     {
  931.         $this->__initializer__ && $this->__initializer__->__invoke($this'setCustomerAccountNo', [$customerAccountNo]);
  932.         return parent::setCustomerAccountNo($customerAccountNo);
  933.     }
  934.     /**
  935.      * {@inheritDoc}
  936.      */
  937.     public function getCustomerAccountNo()
  938.     {
  939.         $this->__initializer__ && $this->__initializer__->__invoke($this'getCustomerAccountNo', []);
  940.         return parent::getCustomerAccountNo();
  941.     }
  942.     /**
  943.      * {@inheritDoc}
  944.      */
  945.     public function setValidateHash($validateHash)
  946.     {
  947.         $this->__initializer__ && $this->__initializer__->__invoke($this'setValidateHash', [$validateHash]);
  948.         return parent::setValidateHash($validateHash);
  949.     }
  950.     /**
  951.      * {@inheritDoc}
  952.      */
  953.     public function getValidateHash()
  954.     {
  955.         $this->__initializer__ && $this->__initializer__->__invoke($this'getValidateHash', []);
  956.         return parent::getValidateHash();
  957.     }
  958.     /**
  959.      * {@inheritDoc}
  960.      */
  961.     public function setRespostaDci4Connect($respostaDci4Connect)
  962.     {
  963.         $this->__initializer__ && $this->__initializer__->__invoke($this'setRespostaDci4Connect', [$respostaDci4Connect]);
  964.         return parent::setRespostaDci4Connect($respostaDci4Connect);
  965.     }
  966.     /**
  967.      * {@inheritDoc}
  968.      */
  969.     public function getRespostaDci4Connect()
  970.     {
  971.         $this->__initializer__ && $this->__initializer__->__invoke($this'getRespostaDci4Connect', []);
  972.         return parent::getRespostaDci4Connect();
  973.     }
  974.     /**
  975.      * {@inheritDoc}
  976.      */
  977.     public function setValidateToken($validateToken)
  978.     {
  979.         $this->__initializer__ && $this->__initializer__->__invoke($this'setValidateToken', [$validateToken]);
  980.         return parent::setValidateToken($validateToken);
  981.     }
  982.     /**
  983.      * {@inheritDoc}
  984.      */
  985.     public function getValidateToken()
  986.     {
  987.         $this->__initializer__ && $this->__initializer__->__invoke($this'getValidateToken', []);
  988.         return parent::getValidateToken();
  989.     }
  990.     /**
  991.      * {@inheritDoc}
  992.      */
  993.     public function setDescompte($descompte)
  994.     {
  995.         $this->__initializer__ && $this->__initializer__->__invoke($this'setDescompte', [$descompte]);
  996.         return parent::setDescompte($descompte);
  997.     }
  998.     /**
  999.      * {@inheritDoc}
  1000.      */
  1001.     public function getDescompte()
  1002.     {
  1003.         $this->__initializer__ && $this->__initializer__->__invoke($this'getDescompte', []);
  1004.         return parent::getDescompte();
  1005.     }
  1006. }