function ChoiceFormField::availableOptionValues
Returns list of available field options.
@internal
1 call to ChoiceFormField::availableOptionValues()
- ChoiceFormField::setValue in vendor/
symfony/ dom-crawler/ Field/ ChoiceFormField.php - Sets the value of the field.
File
-
vendor/
symfony/ dom-crawler/ Field/ ChoiceFormField.php, line 271
Class
- ChoiceFormField
- ChoiceFormField represents a choice form field.
Namespace
Symfony\Component\DomCrawler\FieldCode
public function availableOptionValues() : array {
$values = [];
foreach ($this->options as $option) {
$values[] = $option['value'];
}
return $values;
}