Conditions | 2 |
Paths | 2 |
Total Lines | 12 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 3 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
16 | public function __doRequest($request, $location, $action, $version, $one_way = 0) |
||
17 | { |
||
18 | if (null !== $this->soapResponse) { |
||
19 | return $this->soapResponse; |
||
20 | } |
||
21 | |||
22 | $this->endpoint = (string)$location; |
||
23 | $this->soapAction = (string)$action; |
||
24 | $this->soapVersion = (string)$version; |
||
25 | $this->soapRequest = (string)$request; |
||
26 | return ''; |
||
27 | } |
||
28 | |||
42 | } |