From 88efe7d96282c028251081de3f196958438edf01 Mon Sep 17 00:00:00 2001 From: Alejandro Celaya Date: Sat, 13 Dec 2025 17:05:02 +0100 Subject: [PATCH] Fix PHPStan error --- module/CLI/src/Command/Config/ReadEnvVarCommand.php | 1 + 1 file changed, 1 insertion(+) diff --git a/module/CLI/src/Command/Config/ReadEnvVarCommand.php b/module/CLI/src/Command/Config/ReadEnvVarCommand.php index 69e1b89e..527c0d12 100644 --- a/module/CLI/src/Command/Config/ReadEnvVarCommand.php +++ b/module/CLI/src/Command/Config/ReadEnvVarCommand.php @@ -40,6 +40,7 @@ class ReadEnvVarCommand extends Command #[Interact] public function askMissing(InputInterface $input, SymfonyStyle $io): void { + /** @var string|null $envVar */ $envVar = $input->getArgument('env-var'); $validEnvVars = enumValues(EnvVars::class);