Skip to content

Commit 7667ed4

Browse files
authored
Merge pull request #104 from Xethron/readme_case_changes
Fix README case inconsistency
2 parents aa76d2c + f9461d3 commit 7667ed4

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,22 +34,22 @@ We have put some self-explanatory examples in the *examples* directory, but here
3434
```php
3535
require 'autoload.php';
3636

37-
$MessageBird = new \MessageBird\Client('YOUR_ACCESS_KEY');
37+
$messageBird = new \MessageBird\Client('YOUR_ACCESS_KEY');
3838

3939
```
4040

4141
That's easy enough. Now we can query the server for information. Lets use getting your balance overview as an example:
4242

4343
```php
4444
// Get your balance
45-
$Balance = $MessageBird->balance->read();
45+
$balance = $messageBird->balance->read();
4646
```
4747

4848

49-
Conversations Whatsapp Sandbox
49+
Conversations WhatsApp Sandbox
5050
-------------
5151

52-
To use the whatsapp sandbox you need to add `\MessageBird\Client::ENABLE_CONVERSATIONSAPI_WHATSAPP_SANDBOX` to the list of features you want enabled. Don't forget to replace `YOUR_ACCESS_KEY` with your actual access key.
52+
To use the WhatsApp sandbox you need to add `\MessageBird\Client::ENABLE_CONVERSATIONSAPI_WHATSAPP_SANDBOX` to the list of features you want enabled. Don't forget to replace `YOUR_ACCESS_KEY` with your actual access key.
5353

5454
```php
5555
$messageBird = new \MessageBird\Client('YOUR_ACCESS_KEY', null, [\MessageBird\Client::ENABLE_CONVERSATIONSAPI_WHATSAPP_SANDBOX]);

0 commit comments

Comments
 (0)