From: gggeek Date: Wed, 8 Feb 2023 17:35:55 +0000 (+0000) Subject: comments X-Git-Tag: 4.10.0~14 X-Git-Url: http://git.onelab.eu/?a=commitdiff_plain;h=2c4a3468b5e53491e9de63876edbea232ecc6697;p=plcapi.git comments --- diff --git a/src/Server.php b/src/Server.php index 87eb575f..74b9db03 100644 --- a/src/Server.php +++ b/src/Server.php @@ -183,7 +183,7 @@ class Server // dispMap is a dispatch array of methods mapped to function names and signatures. // If a method doesn't appear in the map then an unknown method error is generated. - // milosch - changed to make passing dispMap optional. Instead, you can use the class add_to_map() function + // milosch - changed to make passing dispMap optional. Instead, you can use the addToMap() function // to add functions manually (borrowed from SOAPX4) if ($dispatchMap) { $this->setDispatchMap($dispatchMap); diff --git a/tests/09HTTPTest.php b/tests/09HTTPTest.php index 2286c497..6153bf9e 100644 --- a/tests/09HTTPTest.php +++ b/tests/09HTTPTest.php @@ -195,6 +195,7 @@ class HTTPTest extends ServerTest $this->method = 'http10'; // not an error the double assignment! $this->client->method = 'http10'; + /// @todo replace with setOption when dropping the BC layer $this->client->keepalive = false; $this->client->setUseCurl(\PhpXmlRpc\Client::USE_CURL_ALWAYS);