Files
crater/app/Events/ModuleEnabledEvent.php
Mohit Panjwani bdea879273 v6 update
2022-01-10 16:06:17 +05:30

27 lines
464 B
PHP

<?php
namespace Crater\Events;
use Illuminate\Broadcasting\InteractsWithSockets;
use Illuminate\Foundation\Events\Dispatchable;
use Illuminate\Queue\SerializesModels;
class ModuleEnabledEvent
{
use Dispatchable;
use InteractsWithSockets;
use SerializesModels;
public $module;
/**
* Create a new event instance.
*
* @return void
*/
public function __construct($module)
{
$this->module = $module;
}
}