Files
hyperf_service/app/Event/RegistrationEvent.php
2025-03-23 19:18:08 +08:00

19 lines
240 B
PHP

<?php
declare(strict_types=1);
namespace App\Event;
class RegistrationEvent
{
public int $userId;
/**
* @param int $userId
*/
public function __construct(int $userId)
{
$this->userId = $userId;
}
}