Initial commit

This commit is contained in:
2025-09-06 01:21:02 +02:00
commit 5010d085f5
6 changed files with 429 additions and 0 deletions

19
src/LogEvent.php Normal file
View File

@@ -0,0 +1,19 @@
<?php
namespace LogDb\Client;
class LogEvent
{
public function __construct(
public readonly string $brief,
public readonly ?string $detail = null,
public readonly ?string $level = null,
public readonly ?string $scope = null,
public readonly ?string $source = null,
public readonly ?string $origin = null,
public readonly array $context = [],
)
{
}
}