Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
n/a
0 / 0
n/a
0 / 0
CRAP
n/a
0 / 0
DomCollection
n/a
0 / 0
n/a
0 / 0
0
n/a
0 / 0
1<?php
2
3namespace pvc\html\dom;
4
5use pvc\interfaces\html\dom\DomCollectionInterface;
6use pvc\interfaces\html\dom\DomNodeInterface;
7use pvc\struct\collection\Collection;
8
9/**
10 * @extends Collection<DomNodeInterface>
11 */
12class DomCollection extends Collection implements DomCollectionInterface
13{
14}