task: adds event log module

This commit is contained in:
Brock H Caldwell
2025-11-01 15:27:21 -05:00
parent f5732fbcea
commit 6fbd56c952
9 changed files with 259 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
<?php
namespace App\EventLog\Action\Command;
use OneToMany\RichBundle\Contract\CommandInterface;
/** @implements CommandInterface<AddEventLogCommand> */
class AddEventLogCommand implements CommandInterface
{
public function __construct(
public string $type,
public string $message,
public array $context,
) {}
}