FastFeed\Tests\Parser\AbstractParserTest::getFirstValueFromXpath PHP Method

getFirstValueFromXpath() protected method

protected getFirstValueFromXpath ( $content, $query ) : string
$content
$query
return string
    protected function getFirstValueFromXpath($content, $query)
    {
        $node = $this->getFirstNodeFromXpath($content, $query);
        if (!$node) {
            return false;
        }
        return $node->nodeValue;
    }