Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/Config/KeyValueStore.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ final class KeyValueStore
*/
private function __construct(
private array $map,
private ?string $delimiter,
private readonly ?string $delimiter,
) {
}

Expand Down
2 changes: 1 addition & 1 deletion src/Factory/ActionFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public function __construct(
private AuthorizationCheckerInterface $authChecker,
private AdminUrlGeneratorInterface $adminUrlGenerator,
private ?CsrfTokenManagerInterface $csrfTokenManager = null,
private readonly iterable $actionsExtensions = [],
private iterable $actionsExtensions = [],
) {
}

Expand Down
2 changes: 1 addition & 1 deletion src/Filter/Configurator/CommonConfigurator.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
final class CommonConfigurator implements FilterConfiguratorInterface
{
public function __construct(
private EntityTranslationIdGeneratorInterface $entityTranslationIdGenerator,
private readonly EntityTranslationIdGeneratorInterface $entityTranslationIdGenerator,
) {
}

Expand Down
2 changes: 1 addition & 1 deletion src/Filter/Configurator/EntityConfigurator.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
final class EntityConfigurator implements FilterConfiguratorInterface
{
public function __construct(
private AdminUrlGeneratorInterface $adminUrlGenerator,
private readonly AdminUrlGeneratorInterface $adminUrlGenerator,
) {
}

Expand Down
2 changes: 1 addition & 1 deletion src/Router/AdminRouteLoader.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ final class AdminRouteLoader extends Loader
public const ROUTE_LOADER_TYPE = 'easyadmin.routes';

public function __construct(
private AdminRouteGeneratorInterface $adminRouteGenerator,
private readonly AdminRouteGeneratorInterface $adminRouteGenerator,
) {
parent::__construct(null);
}
Expand Down
Loading