We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
seesymfony/symfony#28624
$supportedCountries = ['NL', 'FR', 'DE'];$builder->add('country', CountryType::class, [ 'choice_filter' => function ($countryName) use ($supportedCountries) { return in_array($countryName, $supportedCountries, true); }),]);