Skip to content

Commit 3efeca1

Browse files
author
Gregor Becker
committed
refactor(v1): typos
1 parent 1071ad1 commit 3efeca1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,12 +33,12 @@ Publish Configuration
3333

3434
This package provides an expressive, minimal API around the [Soap Client from Phpro](https://github.com/phpro/soap-client), allowing you to quickly make outgoing SOAP requests to communicate with other web applications.
3535
It is using [HTTPplug](http://httplug.io/) as handler with [Guzzle](https://github.com/php-http/guzzle6-adapter) as client.
36-
Some code is based/copied on/from [Laravel Http wrapper](https://github.com/illuminate/http). Tanks for inspiration :-)
36+
Some code is based/copied on/from [Laravel Http wrapper](https://github.com/illuminate/http). Thanks for inspiration :-)
3737

3838
<a name="making-requests"></a>
3939
## Making Requests
4040

41-
To make requests, you may use the `call` method. First, let's examine how to make a basic `action` request:
41+
To make requests, you may use the `call` method or your soap action through magic `__call`. First, let's examine how to make a basic `action` request:
4242

4343
use CodeDredd\Soap\Facades\Soap;
4444

@@ -56,7 +56,7 @@ The `call` method returns an instance of `CodeDredd\Soap\Client\Response`, which
5656
$response->serverError() : bool;
5757
$response->clientError() : bool;
5858

59-
The `CodeDredd\Soap\Client\Response` object also implements the PHP `ArrayAccess` interface, allowing you to access JSON response data directly on the response:
59+
The `CodeDredd\Soap\Client\Response` object also implements the PHP `ArrayAccess` interface, allowing you to access your response data directly on the response:
6060

6161
return Soap::baseWsdl('http://test.com'/v1?wsdl)->call('Get_Users')['name'];
6262

0 commit comments

Comments
 (0)