File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ $options = ExtSoapOptions::defaults('my.wsdl')
25
25
26
26
Here is a list of built-in providers:
27
27
28
- - [ CachedWsdlProvider] (#cached wsdl provider )
28
+ - [ CachedWsdlProvider] ( #cachedwsdlprovider )
29
29
- [ ~~ HttPlugWsdlProvider~~ ] ( #httplugwsdlprovider )
30
30
- [ InMemoryWsdlProvider] ( #inmemorywsdlprovider )
31
31
- [ LocalWsdlProvider] ( #localwsdlprovider )
@@ -57,12 +57,12 @@ use Symfony\Component\Filesystem\Filesystem;
57
57
58
58
$loader = new HttpWsdlLoader(
59
59
new PluginClient($httpClient, [
60
- // You can add WSDL middlewares in here ...
60
+ // You can add WSDL middlewares in here. E.g.: authentication, manipulations, ...
61
61
]),
62
- Psr17FactoryDiscovery::findRequestFactory
62
+ Psr17FactoryDiscovery::findRequestFactory()
63
63
);
64
64
$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');
66
66
```
67
67
68
68
** Download permanent cache**
You can’t perform that action at this time.
0 commit comments