Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | n/a |
0 / 0 |
n/a |
0 / 0 |
CRAP | n/a |
0 / 0 |
|||
DomCollectionFactory | 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\DomCollectionFactoryInterface; |
6 | use pvc\interfaces\html\dom\DomCollectionInterface; |
7 | use pvc\interfaces\html\dom\DomNodeInterface; |
8 | use pvc\struct\collection\CollectionFactory; |
9 | |
10 | /** |
11 | * @extends CollectionFactory<DomNodeInterface, DomCollectionInterface> |
12 | */ |
13 | class DomCollectionFactory extends CollectionFactory implements DomCollectionFactoryInterface |
14 | { |
15 | |
16 | } |