Passed
Push — master ( cf3061...322d49 )
by Francimar
12:41
created
api/NFe/Entity/Lacre.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -90,6 +90,9 @@
 block discarded – undo
90 90
         return $element;
91 91
     }
92 92
 
93
+    /**
94
+     * @param string $name
95
+     */
93 96
     public function loadNode($element, $name = null)
94 97
     {
95 98
         $name = is_null($name) ? 'lacres' : $name;
Please login to merge, or discard this patch.
api/NFe/Entity/Pagamento.php 1 patch
Doc Comments   +4 added lines, -1 removed lines patch added patch discarded remove patch
@@ -105,7 +105,7 @@  discard block
 block discarded – undo
105 105
     /**
106 106
      * Altera o valor do Indicador para o informado no parâmetro
107 107
      * @param mixed $indicador novo valor para Indicador
108
-     * @return Nota A própria instância da classe
108
+     * @return Pagamento A própria instância da classe
109 109
      */
110 110
     public function setIndicador($indicador)
111 111
     {
@@ -427,6 +427,9 @@  discard block
 block discarded – undo
427 427
         return $element;
428 428
     }
429 429
 
430
+    /**
431
+     * @param string $name
432
+     */
430 433
     public function loadNode($element, $name = null)
431 434
     {
432 435
         $name = is_null($name) ? 'detPag' : $name;
Please login to merge, or discard this patch.
api/NFe/Entity/Produto.php 1 patch
Doc Comments   +10 added lines patch added patch discarded remove patch
@@ -310,6 +310,9 @@  discard block
 block discarded – undo
310 310
         return $this->peso;
311 311
     }
312 312
 
313
+    /**
314
+     * @param Peso $peso
315
+     */
313 316
     public function setPeso($peso)
314 317
     {
315 318
         $this->peso = $peso;
@@ -603,6 +606,10 @@  discard block
 block discarded – undo
603 606
         return $this;
604 607
     }
605 608
 
609
+    /**
610
+     * @param \DOMElement $element
611
+     * @param string $name
612
+     */
606 613
     public static function addNodeInformacoes($tributos, $element, $name = null)
607 614
     {
608 615
         $detalhes = [];
@@ -713,6 +720,9 @@  discard block
 block discarded – undo
713 720
         return $element;
714 721
     }
715 722
 
723
+    /**
724
+     * @param string $name
725
+     */
716 726
     public function loadNode($element, $name = null)
717 727
     {
718 728
         $name = is_null($name) ? 'det' : $name;
Please login to merge, or discard this patch.
api/NFe/Entity/Transporte/Veiculo.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -129,6 +129,9 @@
 block discarded – undo
129 129
         return $element;
130 130
     }
131 131
 
132
+    /**
133
+     * @param string $name
134
+     */
132 135
     public function loadNode($element, $name = null)
133 136
     {
134 137
         $name = is_null($name) ? 'veicTransp' : $name;
Please login to merge, or discard this patch.
api/NFe/Task/Evento.php 1 patch
Doc Comments   +8 added lines, -1 removed lines patch added patch discarded remove patch
@@ -283,7 +283,7 @@  discard block
 block discarded – undo
283 283
     /**
284 284
      * Altera o valor do Modelo para o informado no parâmetro
285 285
      * @param mixed $modelo novo valor para Modelo
286
-     * @return Envio A própria instância da classe
286
+     * @return Evento A própria instância da classe
287 287
      */
288 288
     public function setModelo($modelo)
289 289
     {
@@ -447,6 +447,9 @@  discard block
 block discarded – undo
447 447
         return $id;
448 448
     }
449 449
 
450
+    /**
451
+     * @param string $name
452
+     */
450 453
     public function getNode($name = null)
451 454
     {
452 455
         $this->setID($this->gerarID());
@@ -596,6 +599,9 @@  discard block
 block discarded – undo
596 599
         return $retorno;
597 600
     }
598 601
 
602
+    /**
603
+     * @param string $name
604
+     */
599 605
     public function loadStatusNode($element, $name = null)
600 606
     {
601 607
         $name = is_null($name) ? self::TAG_RETORNO_ENVIO : $name;
@@ -763,6 +769,7 @@  discard block
 block discarded – undo
763 769
 
764 770
     /**
765 771
      * Assina o XML com a assinatura eletrônica do tipo A1
772
+     * @param \DOMDocument $dom
766 773
      */
767 774
     public function assinar($dom = null)
768 775
     {
Please login to merge, or discard this patch.
api/NFe/Task/Retorno.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -134,6 +134,9 @@
 block discarded – undo
134 134
         return $this;
135 135
     }
136 136
 
137
+    /**
138
+     * @param string $name
139
+     */
137 140
     public function getNode($name = null)
138 141
     {
139 142
         $element = parent::getNode(is_null($name) ? '' : $name);
Please login to merge, or discard this patch.