public function FormField::getName in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/symfony/dom-crawler/Field/FormField.php \Symfony\Component\DomCrawler\Field\FormField::getName()
Returns the name of the field.
Return value
string The name of the field
File
- vendor/
symfony/ dom-crawler/ Field/ FormField.php, line 65
Class
- FormField
- FormField is the abstract class for all form fields.
Namespace
Symfony\Component\DomCrawler\FieldCode
public function getName() {
return $this->name;
}