19 lines
240 B
PHP
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;
|
|
}
|
|
}
|