16 lines
314 B
PHP
16 lines
314 B
PHP
<?php
|
|
|
|
namespace App\Framework\Http\Session\Events;
|
|
|
|
use App\Framework\Http\Session\SessionId;
|
|
|
|
final readonly class CsrfTokenGeneratedEvent
|
|
{
|
|
public function __construct(
|
|
public SessionId $sessionId,
|
|
public string $formId,
|
|
public string $token,
|
|
public int $timestamp
|
|
){}
|
|
}
|