-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into feature/introduce-version-bumper
- Loading branch information
Showing
7 changed files
with
857 additions
and
883 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -31,18 +31,18 @@ | |
* @author Martin Adler <[email protected]> | ||
* @license GPL-3.0-or-later | ||
*/ | ||
final class ExceptionHandlerLogRecordMessage implements Message | ||
final readonly class ExceptionHandlerLogRecordMessage implements Message | ||
{ | ||
public function __construct( | ||
private readonly string $level, | ||
private readonly string $component, | ||
private readonly string $mode, | ||
private readonly string $applicationMode, | ||
private readonly string $exceptionClass, | ||
private readonly int|string $exceptionCode, | ||
private readonly string $file, | ||
private readonly int|string $line, | ||
private readonly string $message, | ||
private string $level, | ||
private string $component, | ||
private string $mode, | ||
private string $applicationMode, | ||
private string $exceptionClass, | ||
private int|string $exceptionCode, | ||
private string $file, | ||
private int|string $line, | ||
private string $message, | ||
) {} | ||
|
||
public function print(): string | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -31,12 +31,12 @@ | |
* @author Martin Adler <[email protected]> | ||
* @license GPL-3.0-or-later | ||
*/ | ||
final class LogRecordMessage implements Message | ||
final readonly class LogRecordMessage implements Message | ||
{ | ||
public function __construct( | ||
private readonly string $level, | ||
private readonly string $component, | ||
private readonly string $message, | ||
private string $level, | ||
private string $component, | ||
private string $message, | ||
) {} | ||
|
||
public static function create(LogRecord $record): self | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.