You are here

public function Crawler::registerNamespace in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 vendor/symfony/dom-crawler/Crawler.php \Symfony\Component\DomCrawler\Crawler::registerNamespace()

Parameters

string $prefix:

string $namespace:

File

vendor/symfony/dom-crawler/Crawler.php, line 767

Class

Crawler
Crawler eases navigation of a list of \DOMElement objects.

Namespace

Symfony\Component\DomCrawler

Code

public function registerNamespace($prefix, $namespace) {
  $this->namespaces[$prefix] = $namespace;
}