Habari\HTMLDoc::create PHP Method

create() public static method

Fluent constructor for HTMLDoc objects
public static create ( string $html ) : HTMLDoc
$html string The HTML to parse
return HTMLDoc An instance of the HTMLDoc object created
    public static function create($html)
    {
        return new HTMLDoc($html);
    }