Total Complexity | 4 |
Total Lines | 39 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <html> |
||
12 | class PhpXmlRpcProxy |
||
13 | { |
||
14 | protected $client; |
||
15 | protected $prefix = 'examples.'; |
||
16 | |||
17 | public function __construct(PhpXmlRpc\Client $client) |
||
18 | { |
||
19 | $this->client = $client; |
||
20 | } |
||
21 | |||
22 | /** |
||
23 | * Translates any method call to an xmlrpc call. |
||
24 | * |
||
25 | * @author Toth Istvan |
||
26 | * |
||
27 | * @param string $name remote function name. Will be prefixed |
||
28 | * @param array $arguments |
||
29 | * |
||
30 | * @return mixed |
||
31 | * |
||
32 | * @throws Exception |
||
33 | */ |
||
34 | public function __call($name, $arguments) |
||
51 | } |
||
52 | } |
||
61 |