Initial commit
This commit is contained in:
19
src/LogEvent.php
Normal file
19
src/LogEvent.php
Normal 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 = [],
|
||||
)
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user