feat: adds step to define filter in getting started process

This commit is contained in:
2025-07-11 22:12:11 -05:00
parent 41114446d0
commit b7d7025114
10 changed files with 148 additions and 18 deletions

View File

@@ -23,4 +23,13 @@ class ProviderList
{
return self::$providers;
}
public static function asSelectOptions(): array
{
$result = [];
foreach (static::$providers as $provider) {
$result[$provider] = $provider;
}
return $result;
}
}