public function FormFieldRegistry::all in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/symfony/dom-crawler/FormFieldRegistry.php \Symfony\Component\DomCrawler\FormFieldRegistry::all()
Returns the list of field with their value.
Return value
FormField[] The list of fields as array((string) Fully qualified name => (mixed) value)
File
- vendor/
symfony/ dom-crawler/ FormFieldRegistry.php, line 144
Class
- FormFieldRegistry
- This is an internal class that must not be used directly.
Namespace
Symfony\Component\DomCrawlerCode
public function all() {
return $this
->walk($this->fields, $this->base);
}