feat: config

This commit is contained in:
2025-03-23 19:18:08 +08:00
parent 87a5b2f9e1
commit be26c85d82
5 changed files with 99 additions and 0 deletions

View File

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