Skip to content

Commit 3eb6e18

Browse files
support database queues
1 parent f34af24 commit 3eb6e18

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/Illuminate/Queue/DatabaseQueue.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,14 @@
33
namespace Illuminate\Queue;
44

55
use Illuminate\Contracts\Queue\Queue as QueueContract;
6+
use Illuminate\Contracts\Queue\ClearableQueue;
67
use Illuminate\Database\Connection;
78
use Illuminate\Queue\Jobs\DatabaseJob;
89
use Illuminate\Queue\Jobs\DatabaseJobRecord;
910
use Illuminate\Support\Carbon;
1011
use PDO;
1112

12-
class DatabaseQueue extends Queue implements QueueContract
13+
class DatabaseQueue extends Queue implements QueueContract, ClearableQueue
1314
{
1415
/**
1516
* The database connection instance.

0 commit comments

Comments
 (0)