Symfony\Component\DomCrawler\Tests\CrawlerTest::createNodeList PHP Method

createNodeList() protected method

protected createNodeList ( )
    protected function createNodeList()
    {
        $dom = new \DOMDocument();
        $dom->loadXML('<html><div class="foo"></div></html>');
        $domxpath = new \DOMXPath($dom);

        return $domxpath->query('//div');
    }
CrawlerTest