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 65c7c83 commit b9317db
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
5 changes: 2 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,14 @@
"prefer-stable": true,
"require": {
"php": ">=8.2",
"doctrine/annotations": "^1.0",
"doctrine/annotations": "^2.0",
"doctrine/doctrine-bundle": "^2.8.1",
"doctrine/doctrine-migrations-bundle": "^3.1",
"doctrine/orm": "~2.19.0",
"doctrine/orm": "~2.20.0",
"jms/serializer": "^3.9.0",
"league/flysystem": "^3.0",
"roadiz/models": "2.4.x-dev",
"roadiz/rozier": "2.4.x-dev",
"sensio/framework-extra-bundle": "^6.1",
"symfony/asset": "6.4.*",
"symfony/cache": "6.4.*",
"symfony/dotenv": "6.4.*",
Expand Down
8 changes: 4 additions & 4 deletions src/Controller/FontFaceController.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@
use Symfony\Component\HttpFoundation\Response;
use Twig\Environment;

final class FontFaceController
final readonly class FontFaceController
{
public function __construct(
private readonly FilesystemOperator $fontStorage,
private readonly ManagerRegistry $managerRegistry,
private readonly Environment $templating,
private FilesystemOperator $fontStorage,
private ManagerRegistry $managerRegistry,
private Environment $templating,
) {
}

Expand Down

0 comments on commit b9317db

Please sign in to comment.