You are here

public function FormField::getName in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 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\Field

Code

public function getName() {
  return $this->name;
}