From 8f66f162885bd05061f273b6b0b5bbfa4ba0df46 Mon Sep 17 00:00:00 2001 From: Mathias Elle Date: Wed, 21 Jan 2026 08:59:33 +0100 Subject: [PATCH] fix: update validateHyvaTheme to include output parameter --- src/Console/Command/Theme/TokensCommand.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Console/Command/Theme/TokensCommand.php b/src/Console/Command/Theme/TokensCommand.php index 6887971..9255b9c 100644 --- a/src/Console/Command/Theme/TokensCommand.php +++ b/src/Console/Command/Theme/TokensCommand.php @@ -66,7 +66,7 @@ protected function executeCommand(InputInterface $input, OutputInterface $output return Cli::RETURN_FAILURE; } - $themePath = $this->validateHyvaTheme($themeCode); + $themePath = $this->validateHyvaTheme($themeCode, $output); if ($themePath === null) { return Cli::RETURN_FAILURE; } @@ -112,7 +112,7 @@ private function selectTheme(?string $themeCode): ?string } } - private function validateHyvaTheme(string $themeCode): ?string + private function validateHyvaTheme(string $themeCode, OutputInterface $output): ?string { $themePath = $this->themePath->getPath($themeCode); if ($themePath === null) {