X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=src%2FWrapper.php;h=8ea8f2de42353702ca01c604943bcc0df2662e3a;hb=d8e180b0ca87bf675d5fda2099d49c9d0043cd42;hp=c3d1514ddb0f2c899fd67e2ef47d80622d27dce4;hpb=c325fab48f8f3eabc35123efdf5916b77cc878e2;p=plcapi.git diff --git a/src/Wrapper.php b/src/Wrapper.php index c3d1514..8ea8f2d 100644 --- a/src/Wrapper.php +++ b/src/Wrapper.php @@ -8,8 +8,7 @@ namespace PhpXmlRpc; /** - * PHP-XMLRPC "wrapper" class. - * Generate stubs to transparently access xmlrpc methods as php functions and vice-versa. + * PHP-XMLRPC "wrapper" class - generate stubs to transparently access xmlrpc methods as php functions and vice-versa. * Note: this class implements the PROXY pattern, but it is not named so to avoid confusion with http proxies. * * @todo use some better templating system for code generation? @@ -175,8 +174,7 @@ class Wrapper $plainFuncName = 'Closure'; $exists = true; - } - else { + } else { $plainFuncName = $callable; $exists = function_exists($callable); } @@ -397,7 +395,7 @@ class Wrapper * @param array $extraOptions * @param string $plainFuncName * @param string $funcDesc - * @return callable + * @return \Closure */ protected function buildWrapFunctionClosure($callable, $extraOptions, $plainFuncName, $funcDesc) { @@ -498,7 +496,7 @@ class Wrapper * @param array $extraOptions * @param string $plainFuncName * @param array $funcDesc - * @return array + * @return string * * @todo add a nice phpdoc block in the generated source */ @@ -786,7 +784,7 @@ class Wrapper * @param string $methodName * @param array $extraOptions * @param string $mSig - * @return callable + * @return \Closure * * @todo should we allow usage of parameter simple_client_copy to mean 'do not clone' in this case? */ @@ -822,7 +820,7 @@ class Wrapper $decodeOptions[] = 'decode_php_objs'; } - /// @todo check for insufficient nr. of args besides excess ones + /// @todo check for insufficient nr. of args besides excess ones? note that 'source' version does not... // support one extra parameter: debug $maxArgs = count($mSig)-1; // 1st element is the return type @@ -835,7 +833,6 @@ class Wrapper $xmlrpcArgs = array(); foreach($currentArgs as $i => $arg) { if ($i == $maxArgs) { - /// @todo log warning? check what happens with the 'source' version break; } $pType = $mSig[$i+1];