You are here

public function Form::all in Zircon Profile 8

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

Gets all fields.

Return value

FormField[] An array of fields

File

vendor/symfony/dom-crawler/Form.php, line 282

Class

Form
Form represents an HTML form.

Namespace

Symfony\Component\DomCrawler

Code

public function all() {
  return $this->fields
    ->all();
}