Completed
Push — master ( 1d61ab...ab9b44 )
by Meng
02:44
created
src/Soap.php 1 patch
Doc Comments   +7 added lines patch added patch discarded remove patch
@@ -47,12 +47,19 @@
 block discarded – undo
47 47
         return '';
48 48
     }
49 49
 
50
+    /**
51
+     * @param string $function_name
52
+     */
50 53
     public function request($function_name, $arguments, $options, $input_headers)
51 54
     {
52 55
         $this->__soapCall($function_name, $arguments, $options, $input_headers);
53 56
         return new SoapRequest($this->endpoint, $this->soapAction, $this->soapVersion, $this->soapRequest);
54 57
     }
55 58
 
59
+    /**
60
+     * @param string $response
61
+     * @param string $function_name
62
+     */
56 63
     public function response($response, $function_name, &$output_headers)
57 64
     {
58 65
         $this->soapResponse = $response;
Please login to merge, or discard this patch.