Skip to content

Commit

Permalink
Update php_soap_extension.rst
Browse files Browse the repository at this point in the history
 I think 
$client = new \Soapclient('http://example.com/app.php/soap?wsdl', true); 
doesn't accept "true" as a default parameter anymore
  • Loading branch information
xDaizu authored and wouterj committed Dec 19, 2015
1 parent ff23868 commit fa3b0bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cookbook/web_services/php_soap_extension.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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'));

Expand Down

0 comments on commit fa3b0bf

Please sign in to comment.