HTML-DOM/lib/DOM/ProcessingInstruction.php
Dustin Wilson fd6003fb4e Added additional entry point
• Added an option to use Document::loadHTML or Document::load to parse a document.
• Made the DOM elements use dW\HTML5 namespace instead of dW\HTML5\DOM.
• Fixed where TreeBuilder wasn't being properly destructed when the parser is finished.
2018-09-10 16:56:38 -05:00

7 lines
132 B
PHP

<?php
declare(strict_types=1);
namespace dW\HTML5;
class ProcessingInstruction extends \DOMProcessingInstruction {
use Node;
}