You are here

public function ChoiceFormField::getType in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/symfony/dom-crawler/Field/ChoiceFormField.php \Symfony\Component\DomCrawler\Field\ChoiceFormField::getType()

Returns the type of the choice field (radio, select, or checkbox).

Return value

string The type

File

vendor/symfony/dom-crawler/Field/ChoiceFormField.php, line 179

Class

ChoiceFormField
ChoiceFormField represents a choice form field.

Namespace

Symfony\Component\DomCrawler\Field

Code

public function getType() {
  return $this->type;
}