Completed
Push — master ( f47b5a...e55be9 )
by Roberto
15:23 queued 13:17
created
src/Tools.php 1 patch
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.
src/Soap/CurlSoap.php 2 patches
Doc Comments   +7 added lines, -3 removed lines patch added patch discarded remove patch
@@ -55,6 +55,10 @@  discard block
 block discarded – undo
55 55
     private $proxyPASS = '';
56 56
     private $pathlog;
57 57
     
58
+    /**
59
+     * @param string $pathlog
60
+     * @param integer $timeout
61
+     */
58 62
     public function __construct($pathlog, $timeout, $aproxy)
59 63
     {
60 64
         $this->pathlog = $pathlog;
@@ -73,7 +77,7 @@  discard block
 block discarded – undo
73 77
      * @param string $port numero da porta usada pelo proxy
74 78
      * @param string $user nome do usuário do proxy
75 79
      * @param string $pass senha de acesso ao proxy
76
-     * @return boolean
80
+     * @return boolean|null
77 81
      */
78 82
     public function setProxy($ipNumber, $port, $user = '', $pass = '')
79 83
     {
@@ -99,12 +103,12 @@  discard block
 block discarded – undo
99 103
     
100 104
     /**
101 105
      * Envia mensagem ao webservice
102
-     * @param string $urlsevice
106
+     * @param string $urlservice
103 107
      * @param string $namespace
104 108
      * @param string $header
105 109
      * @param string $body
106 110
      * @param string $method
107
-     * @return boolean|string
111
+     * @return string
108 112
      */
109 113
     public function send($urlservice, $namespace, $header, $body, $method)
110 114
     {
Please login to merge, or discard this patch.
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.