You are here

public function FormField::getValue 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::getValue()

Gets the value of the field.

Return value

string|array The value of the field

File

vendor/symfony/dom-crawler/Field/FormField.php, line 75

Class

FormField
FormField is the abstract class for all form fields.

Namespace

Symfony\Component\DomCrawler\Field

Code

public function getValue() {
  return $this->value;
}