Completed
Branch master (709945)
by Roberto
10:22 queued 07:58
created
src/Common/Soap/SoapBase.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -294,7 +294,7 @@
 block discarded – undo
294 294
     /**
295 295
      * Set security protocol
296 296
      * @param int $protocol
297
-     * @return type Description
297
+     * @return integer Description
298 298
      */
299 299
     public function protocol($protocol = self::SSL_DEFAULT)
300 300
     {
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
      * @return string
44 44
      * @throws \NFePHP\Common\Exception\SoapException
45 45
      */
Please login to merge, or discard this patch.
src/Common/Soap/SoapInterface.php 1 patch
Doc Comments   +5 added lines, -1 removed lines patch added patch discarded remove patch
@@ -33,24 +33,28 @@  discard block
 block discarded – undo
33 33
     /**
34 34
      *
35 35
      * @param Certificate $certificate
36
+     * @return void
36 37
      */
37 38
     public function loadCertificate(Certificate $certificate);
38 39
     
39 40
     /**
40 41
      * Set logger class
41 42
      * @param LoggerInterface $logger
43
+     * @return LoggerInterface
42 44
      */
43 45
     public function loadLogger(LoggerInterface $logger);
44 46
     
45 47
     /**
46 48
      * Set timeout for connection
47 49
      * @param int $timesecs
50
+     * @return integer
48 51
      */
49 52
     public function timeout($timesecs);
50 53
     
51 54
     /**
52 55
      * Set security protocol for soap communications
53 56
      * @param int $protocol
57
+     * @return integer
54 58
      */
55 59
     public function protocol($protocol = self::SSL_DEFAULT);
56 60
     
@@ -60,6 +64,7 @@  discard block
 block discarded – undo
60 64
      * @param int $port
61 65
      * @param string $user
62 66
      * @param string $password
67
+     * @return void
63 68
      */
64 69
     public function proxy($ip, $port, $user, $password);
65 70
     
@@ -70,7 +75,6 @@  discard block
 block discarded – undo
70 75
      * @param string $action
71 76
      * @param string $envelope
72 77
      * @param array $parameters
73
-     * @param string $request
74 78
      */
75 79
     public function send(
76 80
         $operation,
Please login to merge, or discard this patch.