Skip to content

Commit

Permalink
refactor: Removed base RozierApp class when possible, added LogTrail …
Browse files Browse the repository at this point in the history
…service for publishing message in session and logger
  • Loading branch information
roadiz-ci committed Dec 3, 2024
1 parent d74f02b commit eef10d0
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/CommonMark.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@
use League\CommonMark\MarkdownConverter;
use Symfony\Component\Stopwatch\Stopwatch;

final class CommonMark implements MarkdownInterface
final readonly class CommonMark implements MarkdownInterface
{
public function __construct(
private readonly MarkdownConverter $textConverter,
private readonly MarkdownConverter $textExtraConverter,
private readonly MarkdownConverter $lineConverter,
private readonly ?Stopwatch $stopwatch = null,
private MarkdownConverter $textConverter,
private MarkdownConverter $textExtraConverter,
private MarkdownConverter $lineConverter,
private ?Stopwatch $stopwatch = null,
) {
}

Expand Down

0 comments on commit eef10d0

Please sign in to comment.