Element
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 2
Duplicated Lines 0 %

Test Coverage

Coverage 0%

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 0
eloc 2
c 1
b 0
f 0
dl 0
loc 2
ccs 0
cts 0
cp 0
1
<?php
2
/**
3
 * Class Element
4
 *
5
 * @filesource   Element.php
6
 * @created      05.05.2017
7
 * @package      chillerlan\PrototypeDOM\Node
8
 * @author       Smiley <[email protected]>
9
 * @copyright    2017 Smiley
10
 * @license      MIT
11
 */
12
13
namespace chillerlan\PrototypeDOM\Node;
14
15
use DOMElement;
16
17
class Element extends DOMElement implements PrototypeHTMLElement{
18
	use PrototypeHTMLElementTrait;
19
}
20