Skip to content

Commit 2184e40

Browse files
committed
Improve docs
1 parent cbfa55a commit 2184e40

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs/wsdl-providers.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ $options = ExtSoapOptions::defaults('my.wsdl')
2525

2626
Here is a list of built-in providers:
2727

28-
- [CachedWsdlProvider](#cached wsdl provider)
28+
- [CachedWsdlProvider](#cachedwsdlprovider)
2929
- [~~HttPlugWsdlProvider~~](#httplugwsdlprovider)
3030
- [InMemoryWsdlProvider](#inmemorywsdlprovider)
3131
- [LocalWsdlProvider](#localwsdlprovider)
@@ -57,12 +57,12 @@ use Symfony\Component\Filesystem\Filesystem;
5757

5858
$loader = new HttpWsdlLoader(
5959
new PluginClient($httpClient, [
60-
// You can add WSDL middlewares in here ...
60+
// You can add WSDL middlewares in here. E.g.: authentication, manipulations, ...
6161
]),
62-
Psr17FactoryDiscovery::findRequestFactory
62+
Psr17FactoryDiscovery::findRequestFactory()
6363
);
6464
$provider = new CachedWsdlProvider($loader, new Filesystem(), sys_get_temp_dir());
65-
$wsdl = $provider->provide('http://somehost/service.wsdl');
65+
$wsdl = $provider->provide('https://somehost/service.wsdl');
6666
```
6767

6868
**Download permanent cache**

0 commit comments

Comments
 (0)