RestTestCase::getXPath PHP Method

getXPath() private method

private getXPath ( )
    private function getXPath()
    {
        $xpath = new DOMXPath($this->doc);
        foreach (static::$namespaces as $prefix => $namespace) {
            $xpath->registerNamespace($prefix, $namespace);
        }
        return $xpath;
    }