public function FormField::hasValue in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/symfony/dom-crawler/Field/FormField.php \Symfony\Component\DomCrawler\Field\FormField::hasValue()
Returns true if the field should be included in the submitted values.
Return value
bool true if the field should be included in the submitted values, false otherwise
1 method overrides FormField::hasValue()
- ChoiceFormField::hasValue in vendor/
symfony/ dom-crawler/ Field/ ChoiceFormField.php - Returns true if the field should be included in the submitted values.
File
- vendor/
symfony/ dom-crawler/ Field/ FormField.php, line 95
Class
- FormField
- FormField is the abstract class for all form fields.
Namespace
Symfony\Component\DomCrawler\FieldCode
public function hasValue() {
return true;
}