Skip to content

Commit 17079ca

Browse files
committed
fix: call to undefined method onQueue
1 parent 7610dc1 commit 17079ca

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/CallWebhookJob.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
use GuzzleHttp\Exception\ConnectException;
99
use GuzzleHttp\Exception\RequestException;
1010
use GuzzleHttp\Psr7\Response;
11+
use Illuminate\Bus\Queueable;
1112
use Illuminate\Contracts\Queue\ShouldQueue;
1213
use Illuminate\Foundation\Events\Dispatchable;
1314
use Illuminate\Queue\InteractsWithQueue;
@@ -20,7 +21,7 @@
2021

2122
class CallWebhookJob implements ShouldQueue
2223
{
23-
use Dispatchable, InteractsWithQueue, SerializesModels;
24+
use Dispatchable, InteractsWithQueue, SerializesModels, Queueable;
2425

2526
public ?array $body;
2627
public ?string $endpoint;

0 commit comments

Comments
 (0)