Skip to content

Commit

Permalink
Various fix
Browse files Browse the repository at this point in the history
  • Loading branch information
woenel committed May 10, 2020
1 parent 1b74eee commit 70eda1f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ These are the three methods you can use to send a message:

###### 1. Using facade
```
use Woenel\Facades\TxtBox;
use Woenel\TxtBox\Facades\TxtBox;
$result = TxtBox::to('09123456789')->message('Hello World!')->send();
Expand All @@ -44,7 +44,7 @@ if($result->success) {

###### 2. Instantiating class
```
use Woenel\TxtBox;
use Woenel\TxtBox\TxtBox;
$txtbox = new TxtBox;
Expand All @@ -59,7 +59,7 @@ if($result->success) {

###### 3. Instantiating class (one-by-one)
```
use Woenel\TxtBox;
use Woenel\TxtBox\TxtBox;
$txtbox = new TxtBox;
Expand Down

0 comments on commit 70eda1f

Please sign in to comment.