From 57a0dfdbdbb5f26c4f626c0083ec637532236726 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20B=C3=B6hmer?= Date: Sun, 7 Jun 2026 22:49:41 +0200 Subject: [PATCH] Fixed phpstan issue --- src/Command/CheckRequirementsCommand.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Command/CheckRequirementsCommand.php b/src/Command/CheckRequirementsCommand.php index fac928b2..97a2074d 100644 --- a/src/Command/CheckRequirementsCommand.php +++ b/src/Command/CheckRequirementsCommand.php @@ -34,7 +34,7 @@ use Symfony\Component\DependencyInjection\ParameterBag\ContainerBagInterface; #[AsCommand('partdb:check-requirements', 'Checks if the requirements Part-DB needs or recommends are fulfilled.')] class CheckRequirementsCommand extends Command { - public function __construct(protected ContainerBagInterface $params, AppSecretChecker $secretChecker, + public function __construct(protected ContainerBagInterface $params, private readonly AppSecretChecker $appSecretChecker ) {