This commit is contained in:
Chirag Aggarwal
2026-02-11 15:20:30 +05:30
parent b2f4c4227e
commit a2dc62d4e5
+4 -1
View File
@@ -78,8 +78,11 @@ class SDKs extends Action
->callback($this->action(...));
}
public function action(?string $selectedPlatform, ?string $selectedSDK, ?string $version, ?string $git, ?string $message, ?string $release, ?string $commit, ?string $sdks): void
public function action(?string $platform, ?string $sdk, ?string $version, ?string $git, ?string $message, ?string $release, ?string $commit, ?string $sdks): void
{
$selectedPlatform = $platform;
$selectedSDK = $sdk;
if (!$sdks) {
$selectedPlatform ??= Console::confirm('Choose Platform ("' . implode('", "', static::getPlatforms()) . '" or "*" for all):');
$selectedSDK ??= \strtolower(Console::confirm('Choose SDK ("*" for all):'));