You are here

public function Link::getMethod in Zircon Profile 8

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

Gets the method associated with this link.

Return value

string The method

1 method overrides Link::getMethod()
Form::getMethod in vendor/symfony/dom-crawler/Form.php
Gets the form method.

File

vendor/symfony/dom-crawler/Link.php, line 71

Class

Link
Link represents an HTML link (an HTML a, area or link tag).

Namespace

Symfony\Component\DomCrawler

Code

public function getMethod() {
  return $this->method;
}