You are here

protected function Form::getRawUri in Zircon Profile 8

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

Returns raw URI data.

Return value

string

Overrides Link::getRawUri

File

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

Class

Form
Form represents an HTML form.

Namespace

Symfony\Component\DomCrawler

Code

protected function getRawUri() {
  return $this->node
    ->getAttribute('action');
}