29 lines
393 B
Plaintext
Raw Normal View History

2017-09-14 22:21:00 +03:00
<?php
namespace $NAMESPACE$;
2020-11-23 17:46:46 +03:00
use App\Abstracts\Event;
2017-09-14 22:21:00 +03:00
2020-11-23 17:46:46 +03:00
class $CLASS$ extends Event
2017-09-14 22:21:00 +03:00
{
/**
* Create a new event instance.
*
* @return void
*/
public function __construct()
{
//
}
/**
* Get the channels the event should be broadcast on.
*
* @return array
*/
public function broadcastOn()
{
return [];
}
}