for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Class Element
*
* @filesource Element.php
* @created 05.05.2017
* @package chillerlan\PrototypeDOM\Node
* @author Smiley <[email protected]>
* @copyright 2017 Smiley
* @license MIT
*/
namespace chillerlan\PrototypeDOM\Node;
use DOMElement;
class Element extends DOMElement implements PrototypeHTMLElement{
use PrototypeHTMLElementTrait;
}