This is a fork of prezent/soap-client package.
use Prezent\Soap\Client\SoapClient;
use Prezent\Soap\Client\Extension\WSAddressing;
$client = new SoapClient('http://example.org/wsa-server.wsdl', [
'event_subscribers' => [
new WSAddressing('http://example.org/return-address'),
],
]);
$client->someMethod('arg');
The complete documentation can be found in the doc directory.