var/cache/dev/doctrine/orm/Proxies/__CG__AppEntityOrdemDeServico.php line 8

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 OrdemDeServico extends \App\Entity\OrdemDeServico 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\Common\Persistence\Proxy::__isInitialized
  26.      */
  27.     public $__isInitialized__ false;
  28.     /**
  29.      * @var array properties to be lazy loaded, with keys being the property
  30.      *            names and values being their default values
  31.      *
  32.      * @see \Doctrine\Common\Proxy\Proxy::__getLazyProperties
  33.      */
  34.     public static $lazyPropertiesDefaults = [];
  35.     /**
  36.      * @param \Closure $initializer
  37.      * @param \Closure $cloner
  38.      */
  39.     public function __construct($initializer null$cloner null)
  40.     {
  41.         $this->__initializer__ $initializer;
  42.         $this->__cloner__      $cloner;
  43.     }
  44.     /**
  45.      * 
  46.      * @return array
  47.      */
  48.     public function __sleep()
  49.     {
  50.         if ($this->__isInitialized__) {
  51.             return ['__isInitialized__''' "\0" 'App\\Entity\\OrdemDeServico' "\0" 'id''' "\0" 'App\\Entity\\OrdemDeServico' "\0" 'proposta''' "\0" 'App\\Entity\\OrdemDeServico' "\0" 'status''' "\0" 'App\\Entity\\OrdemDeServico' "\0" 'observacoes''' "\0" 'App\\Entity\\OrdemDeServico' "\0" 'createdAt''' "\0" 'App\\Entity\\OrdemDeServico' "\0" 'updatedAt''' "\0" 'App\\Entity\\OrdemDeServico' "\0" 'diariosObra''' "\0" 'App\\Entity\\OrdemDeServico' "\0" 'cadastradoPor''' "\0" 'App\\Entity\\OrdemDeServico' "\0" 'userUltimaAlteracao''' "\0" 'App\\Entity\\OrdemDeServico' "\0" 'previsaoEntrega''' "\0" 'App\\Entity\\OrdemDeServico' "\0" 'finalizadaEm''' "\0" 'App\\Entity\\OrdemDeServico' "\0" 'diasInterrupcoes''' "\0" 'App\\Entity\\OrdemDeServico' "\0" 'concretagems''' "\0" 'App\\Entity\\OrdemDeServico' "\0" 'perguntaUmSatisfacao''' "\0" 'App\\Entity\\OrdemDeServico' "\0" 'peruntaDoisSatisfacao''' "\0" 'App\\Entity\\OrdemDeServico' "\0" 'perguntaTresSatisfacao''' "\0" 'App\\Entity\\OrdemDeServico' "\0" 'peruntaQuatroSatisfacao''' "\0" 'App\\Entity\\OrdemDeServico' "\0" 'perguntaCincoSatisfacao''' "\0" 'App\\Entity\\OrdemDeServico' "\0" 'acessoCliente''' "\0" 'App\\Entity\\OrdemDeServico' "\0" 'cno''' "\0" 'App\\Entity\\OrdemDeServico' "\0" 'franquia'];
  52.         }
  53.         return ['__isInitialized__''' "\0" 'App\\Entity\\OrdemDeServico' "\0" 'id''' "\0" 'App\\Entity\\OrdemDeServico' "\0" 'proposta''' "\0" 'App\\Entity\\OrdemDeServico' "\0" 'status''' "\0" 'App\\Entity\\OrdemDeServico' "\0" 'observacoes''' "\0" 'App\\Entity\\OrdemDeServico' "\0" 'createdAt''' "\0" 'App\\Entity\\OrdemDeServico' "\0" 'updatedAt''' "\0" 'App\\Entity\\OrdemDeServico' "\0" 'diariosObra''' "\0" 'App\\Entity\\OrdemDeServico' "\0" 'cadastradoPor''' "\0" 'App\\Entity\\OrdemDeServico' "\0" 'userUltimaAlteracao''' "\0" 'App\\Entity\\OrdemDeServico' "\0" 'previsaoEntrega''' "\0" 'App\\Entity\\OrdemDeServico' "\0" 'finalizadaEm''' "\0" 'App\\Entity\\OrdemDeServico' "\0" 'diasInterrupcoes''' "\0" 'App\\Entity\\OrdemDeServico' "\0" 'concretagems''' "\0" 'App\\Entity\\OrdemDeServico' "\0" 'perguntaUmSatisfacao''' "\0" 'App\\Entity\\OrdemDeServico' "\0" 'peruntaDoisSatisfacao''' "\0" 'App\\Entity\\OrdemDeServico' "\0" 'perguntaTresSatisfacao''' "\0" 'App\\Entity\\OrdemDeServico' "\0" 'peruntaQuatroSatisfacao''' "\0" 'App\\Entity\\OrdemDeServico' "\0" 'perguntaCincoSatisfacao''' "\0" 'App\\Entity\\OrdemDeServico' "\0" 'acessoCliente''' "\0" 'App\\Entity\\OrdemDeServico' "\0" 'cno''' "\0" 'App\\Entity\\OrdemDeServico' "\0" 'franquia'];
  54.     }
  55.     /**
  56.      * 
  57.      */
  58.     public function __wakeup()
  59.     {
  60.         if ( ! $this->__isInitialized__) {
  61.             $this->__initializer__ = function (OrdemDeServico $proxy) {
  62.                 $proxy->__setInitializer(null);
  63.                 $proxy->__setCloner(null);
  64.                 $existingProperties get_object_vars($proxy);
  65.                 foreach ($proxy->__getLazyProperties() as $property => $defaultValue) {
  66.                     if ( ! array_key_exists($property$existingProperties)) {
  67.                         $proxy->$property $defaultValue;
  68.                     }
  69.                 }
  70.             };
  71.         }
  72.     }
  73.     /**
  74.      * 
  75.      */
  76.     public function __clone()
  77.     {
  78.         $this->__cloner__ && $this->__cloner__->__invoke($this'__clone', []);
  79.     }
  80.     /**
  81.      * Forces initialization of the proxy
  82.      */
  83.     public function __load()
  84.     {
  85.         $this->__initializer__ && $this->__initializer__->__invoke($this'__load', []);
  86.     }
  87.     /**
  88.      * {@inheritDoc}
  89.      * @internal generated method: use only when explicitly handling proxy specific loading logic
  90.      */
  91.     public function __isInitialized()
  92.     {
  93.         return $this->__isInitialized__;
  94.     }
  95.     /**
  96.      * {@inheritDoc}
  97.      * @internal generated method: use only when explicitly handling proxy specific loading logic
  98.      */
  99.     public function __setInitialized($initialized)
  100.     {
  101.         $this->__isInitialized__ $initialized;
  102.     }
  103.     /**
  104.      * {@inheritDoc}
  105.      * @internal generated method: use only when explicitly handling proxy specific loading logic
  106.      */
  107.     public function __setInitializer(\Closure $initializer null)
  108.     {
  109.         $this->__initializer__ $initializer;
  110.     }
  111.     /**
  112.      * {@inheritDoc}
  113.      * @internal generated method: use only when explicitly handling proxy specific loading logic
  114.      */
  115.     public function __getInitializer()
  116.     {
  117.         return $this->__initializer__;
  118.     }
  119.     /**
  120.      * {@inheritDoc}
  121.      * @internal generated method: use only when explicitly handling proxy specific loading logic
  122.      */
  123.     public function __setCloner(\Closure $cloner null)
  124.     {
  125.         $this->__cloner__ $cloner;
  126.     }
  127.     /**
  128.      * {@inheritDoc}
  129.      * @internal generated method: use only when explicitly handling proxy specific cloning logic
  130.      */
  131.     public function __getCloner()
  132.     {
  133.         return $this->__cloner__;
  134.     }
  135.     /**
  136.      * {@inheritDoc}
  137.      * @internal generated method: use only when explicitly handling proxy specific loading logic
  138.      * @static
  139.      */
  140.     public function __getLazyProperties()
  141.     {
  142.         return self::$lazyPropertiesDefaults;
  143.     }
  144.     
  145.     /**
  146.      * {@inheritDoc}
  147.      */
  148.     public function getCadastradoPor(): ?\App\Application\Sonata\UserBundle\Entity\User
  149.     {
  150.         $this->__initializer__ && $this->__initializer__->__invoke($this'getCadastradoPor', []);
  151.         return parent::getCadastradoPor();
  152.     }
  153.     /**
  154.      * {@inheritDoc}
  155.      */
  156.     public function setCadastradoPor(?\App\Application\Sonata\UserBundle\Entity\User $cadastradoPor): \App\Entity\OrdemDeServico
  157.     {
  158.         $this->__initializer__ && $this->__initializer__->__invoke($this'setCadastradoPor', [$cadastradoPor]);
  159.         return parent::setCadastradoPor($cadastradoPor);
  160.     }
  161.     /**
  162.      * {@inheritDoc}
  163.      */
  164.     public function getUserUltimaAlteracao(): ?\App\Application\Sonata\UserBundle\Entity\User
  165.     {
  166.         $this->__initializer__ && $this->__initializer__->__invoke($this'getUserUltimaAlteracao', []);
  167.         return parent::getUserUltimaAlteracao();
  168.     }
  169.     /**
  170.      * {@inheritDoc}
  171.      */
  172.     public function setUserUltimaAlteracao(?\App\Application\Sonata\UserBundle\Entity\User $userUltimaAlteracao): \App\Entity\OrdemDeServico
  173.     {
  174.         $this->__initializer__ && $this->__initializer__->__invoke($this'setUserUltimaAlteracao', [$userUltimaAlteracao]);
  175.         return parent::setUserUltimaAlteracao($userUltimaAlteracao);
  176.     }
  177.     /**
  178.      * {@inheritDoc}
  179.      */
  180.     public function __toString()
  181.     {
  182.         $this->__initializer__ && $this->__initializer__->__invoke($this'__toString', []);
  183.         return parent::__toString();
  184.     }
  185.     /**
  186.      * {@inheritDoc}
  187.      */
  188.     public function getId(): ?int
  189.     {
  190.         if ($this->__isInitialized__ === false) {
  191.             return (int)  parent::getId();
  192.         }
  193.         $this->__initializer__ && $this->__initializer__->__invoke($this'getId', []);
  194.         return parent::getId();
  195.     }
  196.     /**
  197.      * {@inheritDoc}
  198.      */
  199.     public function getProposta(): ?\App\Entity\PropostaComercial
  200.     {
  201.         $this->__initializer__ && $this->__initializer__->__invoke($this'getProposta', []);
  202.         return parent::getProposta();
  203.     }
  204.     /**
  205.      * {@inheritDoc}
  206.      */
  207.     public function setProposta(?\App\Entity\PropostaComercial $proposta): \App\Entity\OrdemDeServico
  208.     {
  209.         $this->__initializer__ && $this->__initializer__->__invoke($this'setProposta', [$proposta]);
  210.         return parent::setProposta($proposta);
  211.     }
  212.     /**
  213.      * {@inheritDoc}
  214.      */
  215.     public function getCreatedAt(): ?\DateTimeInterface
  216.     {
  217.         $this->__initializer__ && $this->__initializer__->__invoke($this'getCreatedAt', []);
  218.         return parent::getCreatedAt();
  219.     }
  220.     /**
  221.      * {@inheritDoc}
  222.      */
  223.     public function setCreatedAt(\DateTimeInterface $createdAt): \App\Entity\OrdemDeServico
  224.     {
  225.         $this->__initializer__ && $this->__initializer__->__invoke($this'setCreatedAt', [$createdAt]);
  226.         return parent::setCreatedAt($createdAt);
  227.     }
  228.     /**
  229.      * {@inheritDoc}
  230.      */
  231.     public function getStatus(): ?string
  232.     {
  233.         $this->__initializer__ && $this->__initializer__->__invoke($this'getStatus', []);
  234.         return parent::getStatus();
  235.     }
  236.     /**
  237.      * {@inheritDoc}
  238.      */
  239.     public function setStatus(string $status): \App\Entity\OrdemDeServico
  240.     {
  241.         $this->__initializer__ && $this->__initializer__->__invoke($this'setStatus', [$status]);
  242.         return parent::setStatus($status);
  243.     }
  244.     /**
  245.      * {@inheritDoc}
  246.      */
  247.     public function getObservacoes(): ?string
  248.     {
  249.         $this->__initializer__ && $this->__initializer__->__invoke($this'getObservacoes', []);
  250.         return parent::getObservacoes();
  251.     }
  252.     /**
  253.      * {@inheritDoc}
  254.      */
  255.     public function setObservacoes(?string $observacoes): \App\Entity\OrdemDeServico
  256.     {
  257.         $this->__initializer__ && $this->__initializer__->__invoke($this'setObservacoes', [$observacoes]);
  258.         return parent::setObservacoes($observacoes);
  259.     }
  260.     /**
  261.      * {@inheritDoc}
  262.      */
  263.     public function getUpdatedAt(): ?\DateTimeInterface
  264.     {
  265.         $this->__initializer__ && $this->__initializer__->__invoke($this'getUpdatedAt', []);
  266.         return parent::getUpdatedAt();
  267.     }
  268.     /**
  269.      * {@inheritDoc}
  270.      */
  271.     public function setUpdatedAt(?\DateTimeInterface $updatedAt): \App\Entity\OrdemDeServico
  272.     {
  273.         $this->__initializer__ && $this->__initializer__->__invoke($this'setUpdatedAt', [$updatedAt]);
  274.         return parent::setUpdatedAt($updatedAt);
  275.     }
  276.     /**
  277.      * {@inheritDoc}
  278.      */
  279.     public function getDiariosObra(): \Doctrine\Common\Collections\Collection
  280.     {
  281.         $this->__initializer__ && $this->__initializer__->__invoke($this'getDiariosObra', []);
  282.         return parent::getDiariosObra();
  283.     }
  284.     /**
  285.      * {@inheritDoc}
  286.      */
  287.     public function addDiariosObra(\App\Entity\DiarioObra $diariosObra): \App\Entity\OrdemDeServico
  288.     {
  289.         $this->__initializer__ && $this->__initializer__->__invoke($this'addDiariosObra', [$diariosObra]);
  290.         return parent::addDiariosObra($diariosObra);
  291.     }
  292.     /**
  293.      * {@inheritDoc}
  294.      */
  295.     public function removeDiariosObra(\App\Entity\DiarioObra $diariosObra): \App\Entity\OrdemDeServico
  296.     {
  297.         $this->__initializer__ && $this->__initializer__->__invoke($this'removeDiariosObra', [$diariosObra]);
  298.         return parent::removeDiariosObra($diariosObra);
  299.     }
  300.     /**
  301.      * {@inheritDoc}
  302.      */
  303.     public function getPrevisaoEntrega(): ?\DateTimeInterface
  304.     {
  305.         $this->__initializer__ && $this->__initializer__->__invoke($this'getPrevisaoEntrega', []);
  306.         return parent::getPrevisaoEntrega();
  307.     }
  308.     /**
  309.      * {@inheritDoc}
  310.      */
  311.     public function setPrevisaoEntrega(?\DateTimeInterface $previsaoEntrega): \App\Entity\OrdemDeServico
  312.     {
  313.         $this->__initializer__ && $this->__initializer__->__invoke($this'setPrevisaoEntrega', [$previsaoEntrega]);
  314.         return parent::setPrevisaoEntrega($previsaoEntrega);
  315.     }
  316.     /**
  317.      * {@inheritDoc}
  318.      */
  319.     public function getFinalizadaEm(): ?\DateTimeInterface
  320.     {
  321.         $this->__initializer__ && $this->__initializer__->__invoke($this'getFinalizadaEm', []);
  322.         return parent::getFinalizadaEm();
  323.     }
  324.     /**
  325.      * {@inheritDoc}
  326.      */
  327.     public function setFinalizadaEm(?\DateTimeInterface $finalizadaEm): \App\Entity\OrdemDeServico
  328.     {
  329.         $this->__initializer__ && $this->__initializer__->__invoke($this'setFinalizadaEm', [$finalizadaEm]);
  330.         return parent::setFinalizadaEm($finalizadaEm);
  331.     }
  332.     /**
  333.      * {@inheritDoc}
  334.      */
  335.     public function getDiasInterrupcoes(): ?int
  336.     {
  337.         $this->__initializer__ && $this->__initializer__->__invoke($this'getDiasInterrupcoes', []);
  338.         return parent::getDiasInterrupcoes();
  339.     }
  340.     /**
  341.      * {@inheritDoc}
  342.      */
  343.     public function setDiasInterrupcoes(?int $diasInterrupcoes): \App\Entity\OrdemDeServico
  344.     {
  345.         $this->__initializer__ && $this->__initializer__->__invoke($this'setDiasInterrupcoes', [$diasInterrupcoes]);
  346.         return parent::setDiasInterrupcoes($diasInterrupcoes);
  347.     }
  348.     /**
  349.      * {@inheritDoc}
  350.      */
  351.     public function getConcretagems(): \Doctrine\Common\Collections\Collection
  352.     {
  353.         $this->__initializer__ && $this->__initializer__->__invoke($this'getConcretagems', []);
  354.         return parent::getConcretagems();
  355.     }
  356.     /**
  357.      * {@inheritDoc}
  358.      */
  359.     public function addConcretagem(\App\Entity\Concretagem $concretagem): \App\Entity\OrdemDeServico
  360.     {
  361.         $this->__initializer__ && $this->__initializer__->__invoke($this'addConcretagem', [$concretagem]);
  362.         return parent::addConcretagem($concretagem);
  363.     }
  364.     /**
  365.      * {@inheritDoc}
  366.      */
  367.     public function removeConcretagem(\App\Entity\Concretagem $concretagem): \App\Entity\OrdemDeServico
  368.     {
  369.         $this->__initializer__ && $this->__initializer__->__invoke($this'removeConcretagem', [$concretagem]);
  370.         return parent::removeConcretagem($concretagem);
  371.     }
  372.     /**
  373.      * {@inheritDoc}
  374.      */
  375.     public function getPerguntaUmSatisfacao(): ?int
  376.     {
  377.         $this->__initializer__ && $this->__initializer__->__invoke($this'getPerguntaUmSatisfacao', []);
  378.         return parent::getPerguntaUmSatisfacao();
  379.     }
  380.     /**
  381.      * {@inheritDoc}
  382.      */
  383.     public function setPerguntaUmSatisfacao(?int $perguntaUmSatisfacao): \App\Entity\OrdemDeServico
  384.     {
  385.         $this->__initializer__ && $this->__initializer__->__invoke($this'setPerguntaUmSatisfacao', [$perguntaUmSatisfacao]);
  386.         return parent::setPerguntaUmSatisfacao($perguntaUmSatisfacao);
  387.     }
  388.     /**
  389.      * {@inheritDoc}
  390.      */
  391.     public function getPeruntaDoisSatisfacao(): ?int
  392.     {
  393.         $this->__initializer__ && $this->__initializer__->__invoke($this'getPeruntaDoisSatisfacao', []);
  394.         return parent::getPeruntaDoisSatisfacao();
  395.     }
  396.     /**
  397.      * {@inheritDoc}
  398.      */
  399.     public function setPeruntaDoisSatisfacao(?int $peruntaDoisSatisfacao): \App\Entity\OrdemDeServico
  400.     {
  401.         $this->__initializer__ && $this->__initializer__->__invoke($this'setPeruntaDoisSatisfacao', [$peruntaDoisSatisfacao]);
  402.         return parent::setPeruntaDoisSatisfacao($peruntaDoisSatisfacao);
  403.     }
  404.     /**
  405.      * {@inheritDoc}
  406.      */
  407.     public function getPerguntaTresSatisfacao(): ?int
  408.     {
  409.         $this->__initializer__ && $this->__initializer__->__invoke($this'getPerguntaTresSatisfacao', []);
  410.         return parent::getPerguntaTresSatisfacao();
  411.     }
  412.     /**
  413.      * {@inheritDoc}
  414.      */
  415.     public function setPerguntaTresSatisfacao(?int $perguntaTresSatisfacao): \App\Entity\OrdemDeServico
  416.     {
  417.         $this->__initializer__ && $this->__initializer__->__invoke($this'setPerguntaTresSatisfacao', [$perguntaTresSatisfacao]);
  418.         return parent::setPerguntaTresSatisfacao($perguntaTresSatisfacao);
  419.     }
  420.     /**
  421.      * {@inheritDoc}
  422.      */
  423.     public function getPeruntaQuatroSatisfacao(): ?int
  424.     {
  425.         $this->__initializer__ && $this->__initializer__->__invoke($this'getPeruntaQuatroSatisfacao', []);
  426.         return parent::getPeruntaQuatroSatisfacao();
  427.     }
  428.     /**
  429.      * {@inheritDoc}
  430.      */
  431.     public function setPeruntaQuatroSatisfacao(?int $peruntaQuatroSatisfacao): \App\Entity\OrdemDeServico
  432.     {
  433.         $this->__initializer__ && $this->__initializer__->__invoke($this'setPeruntaQuatroSatisfacao', [$peruntaQuatroSatisfacao]);
  434.         return parent::setPeruntaQuatroSatisfacao($peruntaQuatroSatisfacao);
  435.     }
  436.     /**
  437.      * {@inheritDoc}
  438.      */
  439.     public function getPerguntaCincoSatisfacao(): ?int
  440.     {
  441.         $this->__initializer__ && $this->__initializer__->__invoke($this'getPerguntaCincoSatisfacao', []);
  442.         return parent::getPerguntaCincoSatisfacao();
  443.     }
  444.     /**
  445.      * {@inheritDoc}
  446.      */
  447.     public function setPerguntaCincoSatisfacao(?int $perguntaCincoSatisfacao): \App\Entity\OrdemDeServico
  448.     {
  449.         $this->__initializer__ && $this->__initializer__->__invoke($this'setPerguntaCincoSatisfacao', [$perguntaCincoSatisfacao]);
  450.         return parent::setPerguntaCincoSatisfacao($perguntaCincoSatisfacao);
  451.     }
  452.     /**
  453.      * {@inheritDoc}
  454.      */
  455.     public function getAcessoCliente(): ?\App\Entity\AcessoCliente
  456.     {
  457.         $this->__initializer__ && $this->__initializer__->__invoke($this'getAcessoCliente', []);
  458.         return parent::getAcessoCliente();
  459.     }
  460.     /**
  461.      * {@inheritDoc}
  462.      */
  463.     public function setAcessoCliente(?\App\Entity\AcessoCliente $acessoCliente): \App\Entity\OrdemDeServico
  464.     {
  465.         $this->__initializer__ && $this->__initializer__->__invoke($this'setAcessoCliente', [$acessoCliente]);
  466.         return parent::setAcessoCliente($acessoCliente);
  467.     }
  468.     /**
  469.      * {@inheritDoc}
  470.      */
  471.     public function getCno(): ?string
  472.     {
  473.         $this->__initializer__ && $this->__initializer__->__invoke($this'getCno', []);
  474.         return parent::getCno();
  475.     }
  476.     /**
  477.      * {@inheritDoc}
  478.      */
  479.     public function setCno(?string $cno): \App\Entity\OrdemDeServico
  480.     {
  481.         $this->__initializer__ && $this->__initializer__->__invoke($this'setCno', [$cno]);
  482.         return parent::setCno($cno);
  483.     }
  484.     /**
  485.      * {@inheritDoc}
  486.      */
  487.     public function getFranquia(): ?\App\Entity\Empresa
  488.     {
  489.         $this->__initializer__ && $this->__initializer__->__invoke($this'getFranquia', []);
  490.         return parent::getFranquia();
  491.     }
  492.     /**
  493.      * {@inheritDoc}
  494.      */
  495.     public function setFranquia(?\App\Entity\Empresa $franquia): \App\Entity\OrdemDeServico
  496.     {
  497.         $this->__initializer__ && $this->__initializer__->__invoke($this'setFranquia', [$franquia]);
  498.         return parent::setFranquia($franquia);
  499.     }
  500. }