Skip to content

Commit cd33ab0

Browse files
dermatzCopilot
andauthored
Potential fix for pull request finding
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
1 parent 0407740 commit cd33ab0

1 file changed

Lines changed: 5 additions & 4 deletions

File tree

src/Console/Command/AbstractCommand.php

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
use Laravel\Prompts\SelectPrompt;
88
use Magento\Framework\Console\Cli;
99
use OpenForgeProject\MageForge\Service\ThemeSuggester;
10+
use OpenForgeProject\MageForge\Model\ThemeList;
1011
use Symfony\Component\Console\Command\Command;
1112
use Symfony\Component\Console\Input\InputInterface;
1213
use Symfony\Component\Console\Output\OutputInterface;
@@ -482,13 +483,13 @@ private function removeSecureEnvironmentValue(string $name): void
482483
/**
483484
* Resolve wildcard theme codes (e.g., Vendor/* to all underlying vendor themes)
484485
*
485-
* @param string[] $themeCodes
486-
* @param \OpenForgeProject\MageForge\Model\ThemeList $themeList
487-
* @return string[]
486+
* @param array<string> $themeCodes
487+
* @param ThemeList $themeList
488+
* @return array<string>
488489
*/
489490
protected function resolveWildcardThemes(
490491
array $themeCodes,
491-
\OpenForgeProject\MageForge\Model\ThemeList $themeList
492+
ThemeList $themeList
492493
): array {
493494
$resolved = [];
494495
$availableThemes = null;

0 commit comments

Comments
 (0)