diff --git a/README.md b/README.md index 937165c..a157bb3 100644 --- a/README.md +++ b/README.md @@ -42,8 +42,7 @@ return [ * https://lob.com/docs#all_event_types */ 'jobs' => [ - // Here is an example - // 'letter.created' => \BinaryCats\LobWebhooks\Jobs\HandleLetter_Created::class, + // 'letter_delivered' => \BinaryCats\LobWebhooks\Jobs\HandleDelivered::class, ], /* @@ -109,8 +108,6 @@ There are two ways this package enables you to handle webhook requests: you can If you want to do something when a specific event type comes in you can define a job that does the work. Here's an example of such a job: ```php - [ - 'letter.created' => \App\Jobs\LobWebhooks\HandleLetter_Created::class, + 'letter_created' => \App\Jobs\Lob\Webhooks\HandleLetterCreatedJob::class, ], ``` @@ -176,8 +173,6 @@ protected $listen = [ Here's an example of such a listener: ```php -