8000 Update php_soap_extension.rst · symfony/symfony-docs@fa3b0bf · GitHub
[go: up one dir, main page]

Skip to content

Commit fa3b0bf

Browse files
xDaizuwouterj
authored andcommitted
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
1 parent ff23868 commit fa3b0bf

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)
0