fixed listener stub

This commit is contained in:
Denis Duliçi 2021-06-30 17:11:46 +03:00
parent 72acc3e3ee
commit 80bb6fd3b0
2 changed files with 0 additions and 22 deletions

View File

@ -10,16 +10,6 @@ class $CLASS$ implements ShouldQueue
{
use InteractsWithQueue;
/**
* Create the event listener.
*
* @return void
*/
public function __construct()
{
//
}
/**
* Handle the event.
*

View File

@ -3,21 +3,9 @@
namespace $NAMESPACE$;
use $EVENTNAME$;
use Illuminate\Queue\InteractsWithQueue;
use Illuminate\Contracts\Queue\ShouldQueue;
class $CLASS$
{
/**
* Create the event listener.
*
* @return void
*/
public function __construct()
{
//
}
/**
* Handle the event.
*