public function ChoiceFormField::isMultiple in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/symfony/dom-crawler/Field/ChoiceFormField.php \Symfony\Component\DomCrawler\Field\ChoiceFormField::isMultiple()
Returns true if the field accepts multiple values.
Return value
bool true if the field accepts multiple values, false otherwise
File
- vendor/
symfony/ dom-crawler/ Field/ ChoiceFormField.php, line 189
Class
- ChoiceFormField
- ChoiceFormField represents a choice form field.
Namespace
Symfony\Component\DomCrawler\FieldCode
public function isMultiple() {
return $this->multiple;
}