From fa3b0bf50e772523af1d4608d277e42a56ce29d2 Mon Sep 17 00:00:00 2001 From: Daniel Parejo Date: Wed, 25 Nov 2015 13:44:48 +0100 Subject: [PATCH] Update php_soap_extension.rst I think $client = new \Soapclient('http://example.com/app.php/soap?wsdl', true); doesn't accept "true" as a default parameter anymore --- cookbook/web_services/php_soap_extension.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cookbook/web_services/php_soap_extension.rst b/cookbook/web_services/php_soap_extension.rst index de5a8a20dab..134c67fb044 100644 --- a/cookbook/web_services/php_soap_extension.rst +++ b/cookbook/web_services/php_soap_extension.rst @@ -124,7 +124,7 @@ Below is an example calling the service using a `NuSOAP`_ client. This example assumes that the ``indexAction`` in the controller above is accessible via the route ``/soap``:: - $client = new \Soapclient('http://example.com/app.php/soap?wsdl', true); + $client = new \Soapclient('http://example.com/app.php/soap?wsdl'); $result = $client->call('hello', array('name' => 'Scott'));