Completed
Push — master ( f31336...2f9ad9 )
by Roberto
28:01 queued 13:02
created
src/Base.php 2 patches
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -227,6 +227,7 @@
 block discarded – undo
227 227
     /**
228 228
      * Monta a primeira parte de todas mensagens
229 229
      * @param string $namespace
230
+     * @param string $tipo
230 231
      * @return string
231 232
      */
232 233
     protected function buildMsgH($tipo, $namespace)
Please login to merge, or discard this patch.
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -4,7 +4,6 @@
 block discarded – undo
4 4
 
5 5
 use InvalidArgumentException;
6 6
 use NFePHP\Esfinge\Soap\CurlSoap;
7
-use NFePHP\Esfinge\Files\FileFolders;
8 7
 
9 8
 class Base
10 9
 {
Please login to merge, or discard this patch.
src/Tools.php 2 patches
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -51,7 +51,6 @@
 block discarded – undo
51 51
     /**
52 52
      * Define o período de competência das informações
53 53
      * formado AAAABB sendo BB o bimestre de 01 até 06
54
-     * @param string $valor
55 54
      */
56 55
     public function setCompetencia($aaaabb)
57 56
     {
Please login to merge, or discard this patch.
Unused Use Statements   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -3,9 +3,8 @@
 block discarded – undo
3 3
 namespace NFePHP\Esfinge;
4 4
 
5 5
 use InvalidArgumentException;
6
-use RuntimeException;
7
-use NFePHP\Esfinge\Response;
8 6
 use NFePHP\Esfinge\Base;
7
+use RuntimeException;
9 8
 
10 9
 class Tools extends Base
11 10
 {
Please login to merge, or discard this patch.
src/Soap/CurlSoap.php 2 patches
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,8 +2,8 @@
 block discarded – undo
2 2
 
3 3
 namespace NFePHP\Esfinge\Soap;
4 4
 
5
-use RuntimeException;
6 5
 use NFePHP\Esfinge\Files\FilesFolders;
6
+use RuntimeException;
7 7
 
8 8
 class CurlSoap
9 9
 {
Please login to merge, or discard this patch.
Doc Comments   +7 added lines, -3 removed lines patch added patch discarded remove patch
@@ -58,6 +58,10 @@  discard block
 block discarded – undo
58 58
     private $msgHeader = '';
59 59
     private $msgBody = '';
60 60
     
61
+    /**
62
+     * @param string $pathlog
63
+     * @param integer $timeout
64
+     */
61 65
     public function __construct($pathlog, $timeout, $aproxy, $debug = false)
62 66
     {
63 67
         $this->pathlog = $pathlog;
@@ -77,7 +81,7 @@  discard block
 block discarded – undo
77 81
      * @param string $port numero da porta usada pelo proxy
78 82
      * @param string $user nome do usuário do proxy
79 83
      * @param string $pass senha de acesso ao proxy
80
-     * @return boolean
84
+     * @return boolean|null
81 85
      */
82 86
     public function setProxy($ipNumber, $port, $user = '', $pass = '')
83 87
     {
@@ -103,7 +107,7 @@  discard block
 block discarded – undo
103 107
     
104 108
     /**
105 109
      * Envia mensagem ao webservice
106
-     * @param string $urlsevice
110
+     * @param string $urlservice
107 111
      * @param string $namespace
108 112
      * @param string $header
109 113
      * @param string $body
@@ -183,7 +187,7 @@  discard block
 block discarded – undo
183 187
      * Envio via cURL
184 188
      * @param string $url
185 189
      * @param string $data
186
-     * @param array $parametros
190
+     * @param string[] $parametros
187 191
      * @return string
188 192
      */
189 193
     protected function zCommCurl($url, $data = '', $parametros = array(), $mark = 'dd')
Please login to merge, or discard this patch.