We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 719215a + baafda6 commit aa50733Copy full SHA for aa50733
README.md
@@ -189,8 +189,8 @@ Let's take a look at how you can listen for such an event. In the `EventServiceP
189
* @var array
190
*/
191
protected $listen = [
192
- 'mailgin-webhooks::delievered' => [
193
- App\Listeners\DelieveredSource::class,
+ 'mailgun-webhooks::delivered' => [
+ App\Listeners\DeliveredSource::class,
194
],
195
];
196
```
@@ -205,7 +205,7 @@ namespace App\Listeners;
205
use Illuminate\Contracts\Queue\ShouldQueue;
206
use Spatie\WebhookClient\Models\WebhookCall;
207
208
-class DelieveredSource implements ShouldQueue
+class DeliveredSource implements ShouldQueue
209
{
210
public function handle(WebhookCall $webhookCall)
211
0 commit comments