StocksNew/stubs/nwidart-stubs/listener.stub
Sampanna Rimal 53c0140f58 first commit
2024-08-27 17:48:06 +05:45

27 lines
382 B
Plaintext

<?php
namespace $NAMESPACE$;
use $EVENTNAME$;
use Illuminate\Queue\InteractsWithQueue;
use Illuminate\Contracts\Queue\ShouldQueue;
class $CLASS$
{
/**
* Create the event listener.
*/
public function __construct()
{
//
}
/**
* Handle the event.
*/
public function handle($SHORTEVENTNAME$ $event): void
{
//
}
}