New-OMIS/stubs/nwidart-stubs/listener-duck.stub
2024-04-04 16:20:27 +05:45

26 lines
348 B
Plaintext

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