Passed
Push — master ( 6e1700...17051a )
by Roberto
11:21 queued 08:24
created
src/Common/Soap/SoapBase.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -348,7 +348,7 @@
 block discarded – undo
348 348
      *
349 349
      * @param  int $protocol
350 350
      *
351
-     * @return type Description
351
+     * @return integer Description
352 352
      */
353 353
     public function protocol($protocol = self::SSL_DEFAULT)
354 354
     {
Please login to merge, or discard this patch.
src/Common/Tools.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -176,7 +176,6 @@
 block discarded – undo
176 176
     /**
177 177
      * Stringfy layout number
178 178
      *
179
-     * @param  type $layout
180 179
      *
181 180
      * @return string
182 181
      */
Please login to merge, or discard this patch.
src/Common/Soap/SoapCurl.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@
 block discarded – undo
39 39
      * @param  string $url
40 40
      * @param  string $action
41 41
      * @param  string $envelope
42
-     * @param  array $parameters
42
+     * @param  string[] $parameters
43 43
      *
44 44
      * @return string
45 45
      * @throws \NFePHP\Common\Exception\SoapException
Please login to merge, or discard this patch.
src/Common/Soap/SoapInterface.php 1 patch
Doc Comments   +4 added lines, -1 removed lines patch added patch discarded remove patch
@@ -38,6 +38,7 @@  discard block
 block discarded – undo
38 38
     /**
39 39
      *
40 40
      * @param Certificate $certificate
41
+     * @return void
41 42
      */
42 43
     public function loadCertificate(Certificate $certificate);
43 44
 
@@ -52,6 +53,7 @@  discard block
 block discarded – undo
52 53
      * Set timeout for connection
53 54
      *
54 55
      * @param int $timesecs
56
+     * @return integer
55 57
      */
56 58
     public function timeout($timesecs);
57 59
 
@@ -59,6 +61,7 @@  discard block
 block discarded – undo
59 61
      * Set security protocol for soap communications
60 62
      *
61 63
      * @param int $protocol
64
+     * @return integer
62 65
      */
63 66
     public function protocol($protocol = self::SSL_DEFAULT);
64 67
 
@@ -69,6 +72,7 @@  discard block
 block discarded – undo
69 72
      * @param int $port
70 73
      * @param string $user
71 74
      * @param string $password
75
+     * @return void
72 76
      */
73 77
     public function proxy($ip, $port, $user, $password);
74 78
 
@@ -80,7 +84,6 @@  discard block
 block discarded – undo
80 84
      * @param string $action
81 85
      * @param string $envelope
82 86
      * @param array $parameters
83
-     * @param string $request
84 87
      */
85 88
     public function send(
86 89
         $operation,
Please login to merge, or discard this patch.