Refactor point value object and add observability

This commit is contained in:
Bernard Ngandu
2025-10-10 14:55:36 +02:00
parent 8a43d3967c
commit 68eb54995f
46 changed files with 3691 additions and 229 deletions
@@ -0,0 +1,12 @@
<?php
declare(strict_types=1);
namespace App\Message;
final class SignalCreatedMessage
{
public function __construct(public readonly int $signalId)
{
}
}