22 lines
430 B
PHP
22 lines
430 B
PHP
<?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)
|
|
{
|
|
}
|
|
}
|