Skip to content

Commit 1edb61e

Browse files
committed
bug #5904 Update php_soap_extension.rst (xDaizu)
This PR was submitted for the 2.7 branch but it was merged into the 2.3 branch instead (closes #5904). Discussion ---------- 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 second parameter anymore Commits ------- fa3b0bf Update php_soap_extension.rst
2 parents ff23868 + fa3b0bf commit 1edb61e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cookbook/web_services/php_soap_extension.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ Below is an example calling the service using a `NuSOAP`_ client. This example
124124
assumes that the ``indexAction`` in the controller above is accessible via the
125125
route ``/soap``::
126126

127-
$client = new \Soapclient('http://example.com/app.php/soap?wsdl', true);
127+
$client = new \Soapclient('http://example.com/app.php/soap?wsdl');
128128

129129
$result = $client->call('hello', array('name' => 'Scott'));
130130

0 commit comments

Comments
 (0)