Skip to content

Commit aa50733

Browse files
authored
Merge pull request #27 from adamsrog/v9.x
Update README.md, fix typo
2 parents 719215a + baafda6 commit aa50733

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
@@ -189,8 +189,8 @@ Let's take a look at how you can listen for such an event. In the `EventServiceP
189189
* @var array
190190
*/
191191
protected $listen = [
192-
'mailgin-webhooks::delievered' => [
193-
App\Listeners\DelieveredSource::class,
192+
'mailgun-webhooks::delivered' => [
193+
App\Listeners\DeliveredSource::class,
194194
],
195195
];
196196
```
@@ -205,7 +205,7 @@ namespace App\Listeners;
205205
use Illuminate\Contracts\Queue\ShouldQueue;
206206
use Spatie\WebhookClient\Models\WebhookCall;
207207

208-
class DelieveredSource implements ShouldQueue
208+
class DeliveredSource implements ShouldQueue
209209
{
210210
public function handle(WebhookCall $webhookCall)
211211
{

0 commit comments

Comments
 (0)