1 | <?php |
||
16 | class SoapAdapter extends AbstractAdapter |
||
17 | { |
||
18 | const PROTOCOL_NAME = 'soap'; |
||
19 | |||
20 | /** |
||
21 | * {@inheritdoc} |
||
22 | * |
||
23 | * @param string $functionName name of the function call |
||
24 | * @param mixed $args arguments for the function call |
||
25 | * |
||
26 | * @throws NoServerAvailableException |
||
27 | * @return mixed |
||
28 | * @throws \SoapFault |
||
29 | * @throws \Exception |
||
30 | */ |
||
31 | public function call($functionName, $args) |
||
39 | |||
40 | /** |
||
41 | * {@inheritdoc} |
||
42 | * |
||
43 | * @return SoapClient|ClientInterface |
||
44 | */ |
||
45 | public function getClient() |
||
49 | } |
||
50 |