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