Skip to content

Commit

Permalink
add queueable to queued listener stub
Browse files Browse the repository at this point in the history
  • Loading branch information
taylorotwell committed Dec 20, 2016
1 parent 9a6ca3a commit dcd64b6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/Illuminate/Foundation/Console/stubs/listener-queued.stub
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,13 @@
namespace DummyNamespace;

use DummyFullEvent;
use Illuminate\Bus\Queueable;
use Illuminate\Queue\InteractsWithQueue;
use Illuminate\Contracts\Queue\ShouldQueue;

class DummyClass implements ShouldQueue
{
use InteractsWithQueue;
use InteractsWithQueue, Queueable;

/**
* Create the event listener.
Expand Down

0 comments on commit dcd64b6

Please sign in to comment.