comments
authorgggeek <giunta.gaetano@gmail.com>
Wed, 8 Feb 2023 17:35:55 +0000 (17:35 +0000)
committergggeek <giunta.gaetano@gmail.com>
Wed, 8 Feb 2023 17:35:55 +0000 (17:35 +0000)
src/Server.php
tests/09HTTPTest.php

index 87eb575..74b9db0 100644 (file)
@@ -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);
index 2286c49..6153bf9 100644 (file)
@@ -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);