@@ -51,7 +51,6 @@ |
||
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 | { |
@@ -55,6 +55,10 @@ discard block |
||
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 |
||
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 |
||
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 | { |
@@ -2,8 +2,8 @@ |
||
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 | { |