We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6458cf9 commit 4e4741cCopy full SHA for 4e4741c
README.md
@@ -17,11 +17,9 @@ if you don't use Composer.
17
### Usage
18
19
```php
20
-use Seven\Api\Client;
21
-use Seven\Api\Params\SmsParams;
22
-$client = new Client('MY_VERY_SECRET_API_KEY!');
23
-$params = new SmsParams('HI2U', '+4901234567890');
24
-$client->sms($params);
+$client = new Seven\Api\Client('MY_VERY_SECRET_API_KEY!');
+$params = new Seven\Api\Params\SmsParams('HI2U', '+4901234567890');
+$client->sms->dispatch($params);
25
```
26
27
See [docs](/docs) for more details.
0 commit comments