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 | |
3 | namespace pvc\html\dom; |
4 | |
5 | use pvc\interfaces\html\dom\DomCollectionInterface; |
6 | use pvc\interfaces\html\dom\DomNodeInterface; |
7 | use pvc\struct\collection\Collection; |
8 | |
9 | /** |
10 | * @extends Collection<DomNodeInterface> |
11 | */ |
12 | class DomCollection extends Collection implements DomCollectionInterface |
13 | { |
14 | } |