22 lines
430 B
PHP
Raw Normal View History

2022-12-05 23:01:12 +08:00
<?php
namespace Catch\Events\Module;
use Illuminate\Broadcasting\InteractsWithSockets;
use Illuminate\Foundation\Events\Dispatchable;
use Illuminate\Queue\SerializesModels;
class Updated
{
use Dispatchable, InteractsWithSockets, SerializesModels;
/**
* Create a new event instance.
*
* @return void
*/
public function __construct(public string $originName, public array $module)
{
}
}