Goose\Tests\Harness\TestTrait::document PHP Method

document() private method

private document ( string $html ) : DOMWrap\Document
$html string
return DOMWrap\Document
    private function document($html)
    {
        $doc = new Document();
        $doc->html($html);
        // Remove the doctype (if it exists) so we can use Document::$firstChild
        if ($doc->doctype instanceof \DOMDocumentType) {
            $doc->removeChild($doc->doctype);
        }
        // Remove any leading ProcessingInstructions
        if ($doc->firstChild instanceof \DOMProcessingInstruction) {
            $doc->removeChild($doc->firstChild);
        }
        return $doc;
    }