Passed
Push — master ( 2e1257...b0b58d )
by
unknown
02:22
created
src/Tools.php 1 patch
Doc Comments   +2 added lines, -3 removed lines patch added patch discarded remove patch
@@ -127,7 +127,7 @@  discard block
 block discarded – undo
127 127
      *
128 128
      * @param string $uf sigla da unidade da Federação
129 129
      * @param string $tpAmb tipo de ambiente 1-produção e 2-homologação
130
-     * @return   mixed string XML do retorno do webservice, ou false se ocorreu algum erro
130
+     * @return   string string XML do retorno do webservice, ou false se ocorreu algum erro
131 131
      */
132 132
     public function sefazStatus($uf = '', $tpAmb = null)
133 133
     {
@@ -286,9 +286,8 @@  discard block
 block discarded – undo
286 286
      *
287 287
      * @param string $uf
288 288
      * @param string $chave
289
-     * @param string $cOrgao
290 289
      * @param string $tpEvento
291
-     * @param string $nSeqEvento
290
+     * @param integer $nSeqEvento
292 291
      * @param string $tagAdic
293 292
      * @return   string
294 293
      */
Please login to merge, or discard this patch.
src/Complements.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -154,7 +154,6 @@
 block discarded – undo
154 154
      * NOTE: This action is not necessary, I use only for my needs to
155 155
      * leave the MDFE marked as Canceled in order to avoid mistakes
156 156
      * after its cancellation.
157
-     * @param string $MDFE content of autorized MDFE XML
158 157
      * @param string $cancelamento content of SEFAZ response
159 158
      * @return string
160 159
      * @throws \InvalidArgumentException
Please login to merge, or discard this patch.
src/Make.php 1 patch
Doc Comments   +1 added lines, -6 removed lines patch added patch discarded remove patch
@@ -1828,10 +1828,6 @@  discard block
 block discarded – undo
1828 1828
      * tagVag
1829 1829
      * tag MDFe/infMDFe/infModal/ferrov/trem/vag
1830 1830
      *
1831
-     * @param string $serie
1832
-     * @param string $nVag
1833
-     * @param string $nSeq
1834
-     * @param string $tonUtil
1835 1831
      *
1836 1832
      * @return DOMElement
1837 1833
      */
@@ -2191,7 +2187,6 @@  discard block
 block discarded – undo
2191 2187
      * condutor
2192 2188
      * tag MDFe/infMDFe/infModal/rodo/veicTracao/condutor
2193 2189
      *
2194
-     * @param  string $cEmbComb
2195 2190
      *
2196 2191
      * @return DOMElement
2197 2192
      */
@@ -2728,7 +2723,7 @@  discard block
 block discarded – undo
2728 2723
      * Replace all unsuported chars
2729 2724
      *
2730 2725
      * @param  stdClass $std
2731
-     * @param  array $possible
2726
+     * @param  string[] $possible
2732 2727
      * @return stdClass
2733 2728
      */
2734 2729
     private function equilizeParameters(stdClass $std, $possible)
Please login to merge, or discard this patch.
src/Common/Tools.php 1 patch
Doc Comments   +7 added lines patch added patch discarded remove patch
@@ -366,6 +366,12 @@  discard block
 block discarded – undo
366 366
         return $signed;
367 367
     }
368 368
 
369
+    /**
370
+     * @param DOMDocument $dom
371
+     * @param string $modal
372
+     *
373
+     * @return string
374
+     */
369 375
     public function getModalXML($dom, $modal)
370 376
     {
371 377
         $modal = $dom->getElementsByTagName($modal)->item(0);
@@ -527,6 +533,7 @@  discard block
 block discarded – undo
527 533
     /**
528 534
      * Add QRCode Tag to signed XML from a NFCe
529 535
      * @param DOMDocument $dom
536
+     * @param Certificate $certificate
530 537
      * @return string
531 538
      */
532 539
     protected function addQRCode(DOMDocument $dom, $certificate)
Please login to merge, or discard this patch.