From d2f7414583c068c7a1adcbfd79fb0309da0b7247 Mon Sep 17 00:00:00 2001 From: gggeek Date: Sun, 18 Dec 2022 19:22:13 +0000 Subject: [PATCH] improve phpdoc comment in code generated by wrapper --- doc/build/custom.fo.xsl | 102 ---------------------------------------- src/Wrapper.php | 2 +- 2 files changed, 1 insertion(+), 103 deletions(-) delete mode 100644 doc/build/custom.fo.xsl diff --git a/doc/build/custom.fo.xsl b/doc/build/custom.fo.xsl deleted file mode 100644 index e2f58e7f..00000000 --- a/doc/build/custom.fo.xsl +++ /dev/null @@ -1,102 +0,0 @@ - - - - - - - - - - -1 -no -ansi -0 -1 -php -A4 -1 - - - 80% - - - - - - - - - - - - - - - - - - - - - - - - - - - ( void ) - - - ( ) - - - - - - ( ... ) - - - - - - - ( - - - - - - - - - - - , - - - ) - - - - - - - - - - - - = - - - - - diff --git a/src/Wrapper.php b/src/Wrapper.php index 23d2f721..531d5262 100644 --- a/src/Wrapper.php +++ b/src/Wrapper.php @@ -991,7 +991,7 @@ class Wrapper $mDesc .= "* @param int \$debug when 1 (or 2) will enable debugging of the underlying {$prefix} call (defaults to 0)\n"; } $plist = implode(', ', $plist); - $mDesc .= '* @return {$namespace}Response|' . $this->xmlrpc2PhpType($mSig[0]) . " (an {$namespace}Response obj instance if call fails)\n*/\n"; + $mDesc .= "* @return {$namespace}Response|" . $this->xmlrpc2PhpType($mSig[0]) . " (an {$namespace}Response obj instance if call fails)\n*/\n"; $innerCode .= "\$res = \${$this_}client->send(\$req, $timeout, '$protocol');\n"; if ($decodeFault) { -- 2.47.0