1 | <?php |
||
14 | class SoapAdapter extends AbstractAdapter |
||
15 | { |
||
16 | /** |
||
17 | * {@inheritdoc} |
||
18 | * |
||
19 | * @param string $functionName name of the function call |
||
20 | * @param mixed $args arguments for the function call |
||
21 | * |
||
22 | * @return mixed |
||
23 | * @throws NoServerAvailableException |
||
24 | * @throws \SoapFault |
||
25 | * @throws \Exception |
||
26 | */ |
||
27 | 1 | public function call($functionName, $args) |
|
37 | |||
38 | /** |
||
39 | * {@inheritdoc} |
||
40 | * |
||
41 | * @return SoapClient|ClientInterface |
||
42 | */ |
||
43 | 1 | public function getClient() |
|
47 | } |
||
48 |