Skip to content

Commit

Permalink
wrote a bit about usage
Browse files Browse the repository at this point in the history
  • Loading branch information
franzose committed Jun 8, 2016
1 parent ef12dc6 commit 4a07d97
Showing 1 changed file with 21 additions and 1 deletion.
22 changes: 21 additions & 1 deletion readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,24 @@ and copy default configuration by invoking `$ php artisan vendor:publish` comman

## Usage

To be continued...
You can use the service pretty straightforward and inject dependency in your controller:

```php
<?php

namespace App\Http\Controllers;

class SmsController extends Controller
{
public function send(SmppServiceInterface $smpp)
{
// One number
$this->smpp->sendOne(1234567890, 'Hi, this SMS was send via SMPP protocol');

// Multiple numbers
$this->smpp->sendBulk([1234567890, 0987654321], 'Hi!');
}
}
```

However it is better to abstract your SMS sending service from the SMPP implementation by defining a SMPP-compatible service interface.

0 comments on commit 4a07d97

Please sign in to comment.