@@ -15,7 +15,7 @@ This project provides a *simple* API for invoking *async* RPCs to remote web ser
1515* ** Async execution of functions** -
1616 Send any number of functions (RPCs) to the remote web service in parallel and
1717 process their responses as soon as results come in.
18- The Promise-based design provides a * sane* interface to working with out of bound responses.
18+ The Promise-based design provides a * sane* interface to working with out of order responses.
1919* ** Async processing of the WSDL** -
2020 The WSDL (web service description language) file will be downloaded and processed
2121 in the background.
@@ -30,6 +30,7 @@ This project provides a *simple* API for invoking *async* RPCs to remote web ser
3030
3131** Table of contents**
3232
33+ * [ Support us] ( #support-us )
3334* [ Quickstart example] ( #quickstart-example )
3435* [ Usage] ( #usage )
3536 * [ Client] ( #client )
@@ -47,6 +48,16 @@ This project provides a *simple* API for invoking *async* RPCs to remote web ser
4748* [ Tests] ( #tests )
4849* [ License] ( #license )
4950
51+ ## Support us
52+
53+ We invest a lot of time developing, maintaining and updating our awesome
54+ open-source projects. You can help us sustain this high-quality of our work by
55+ [ becoming a sponsor on GitHub] ( https://github.com/sponsors/clue ) . Sponsors get
56+ numerous benefits in return, see our [ sponsoring page] ( https://github.com/sponsors/clue )
57+ for details.
58+
59+ Let's take these projects to the next level together! 🚀
60+
5061## Quickstart example
5162
5263Once [ installed] ( #install ) , you can use the following code to query an example
@@ -155,7 +166,7 @@ try {
155166The `Client` constructor accepts an array of options. All given options will
156167be passed through to the underlying `SoapClient`. However, not all options
157168make sense in this async implementation and as such may not have the desired
158- effect. See also [`SoapClient`](http : //php.net /manual /en /soapclient.soapclient.php)
169+ effect. See also [`SoapClient`](https : //www. php.net /manual /en /soapclient.soapclient.php)
159170documentation for more details.
160171
161172If working in WSDL mode, the `$options` parameter is optional. If working in
@@ -232,7 +243,7 @@ The `getFunctions(): string[]|null` method can be used to
232243return an array of functions defined in the WSDL.
233244
234245It returns the equivalent of PHP ' s
235- [`SoapClient::__getFunctions()`](http ://php.net/manual/en/soapclient.getfunctions.php).
246+ [`SoapClient::__getFunctions()`](https ://www. php.net/manual/en/soapclient.getfunctions.php).
236247In non-WSDL mode, this method returns `null`.
237248
238249#### getTypes()
@@ -241,7 +252,7 @@ The `getTypes(): string[]|null` method can be used to
241252return an array of types defined in the WSDL.
242253
243254It returns the equivalent of PHP' s
244- [`SoapClient::__getTypes()`](http : //php.net /manual /en /soapclient.gettypes.php).
255+ [`SoapClient::__getTypes()`](https : //www. php.net /manual /en /soapclient.gettypes.php).
245256In non-WSDL mode, this method returns `null`.
246257
247258#### getLocation()
@@ -403,7 +414,7 @@ This project follows [SemVer](https://semver.org/).
403414This will install the latest supported version:
404415
405416```bash
406- $ composer require clue/soap-react:^1 .0
417+ $ composer require clue/soap-react:^2 .0
407418```
408419
409420See also the [CHANGELOG](CHANGELOG.md) for details about version upgrades.
0 commit comments