Completed
Push — master ( 25054d...286f3a )
by
unknown
14s
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/Make.php 2 patches
Unused Use Statements   +3 added lines, -5 removed lines patch added patch discarded remove patch
@@ -18,14 +18,12 @@
 block discarded – undo
18 18
  * @author    Roberto L. Machado <linux.rlm at gmail dot com>
19 19
  */
20 20
 
21
-use NFePHP\Common\Keys;
21
+use DOMElement;
22
+use DateTime;
22 23
 use NFePHP\Common\DOMImproved as Dom;
24
+use NFePHP\Common\Keys;
23 25
 use NFePHP\Common\Strings;
24 26
 use stdClass;
25
-use RuntimeException;
26
-use InvalidArgumentException;
27
-use DOMElement;
28
-use DateTime;
29 27
 
30 28
 class Make
31 29
 {
Please login to merge, or discard this patch.
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2282,7 +2282,7 @@
 block discarded – undo
2282 2282
      * Includes missing or unsupported properties in stdClass
2283 2283
      * Replace all unsuported chars
2284 2284
      * @param stdClass $std
2285
-     * @param array $possible
2285
+     * @param string[] $possible
2286 2286
      * @return stdClass
2287 2287
      */
2288 2288
     protected function equilizeParameters(stdClass $std, $possible)
Please login to merge, or discard this patch.