Skip to content

Commit

Permalink
Don't use queue able on listeners.
Browse files Browse the repository at this point in the history
  • Loading branch information
taylorotwell committed Jan 16, 2017
1 parent 3125781 commit 2a90ef4
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 5 deletions.
3 changes: 1 addition & 2 deletions src/Illuminate/Foundation/Console/stubs/listener-queued.stub
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,12 @@
namespace DummyNamespace;

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

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

/**
* Create the event listener.
Expand Down
3 changes: 0 additions & 3 deletions src/Illuminate/Foundation/Console/stubs/listener.stub
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,11 @@
namespace DummyNamespace;

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

class DummyClass
{
use Queueable;

/**
* Create the event listener.
*
Expand Down

0 comments on commit 2a90ef4

Please sign in to comment.