Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | n/a |
0 / 0 |
n/a |
0 / 0 |
CRAP | n/a |
0 / 0 |
|||
TreenodeChildCollection | n/a |
0 / 0 |
n/a |
0 / 0 |
0 | n/a |
0 / 0 |
1 | <?php |
2 | |
3 | namespace pvc\struct\tree\node; |
4 | |
5 | use pvc\interfaces\struct\tree\node\TreenodeChildCollectionInterface; |
6 | use pvc\interfaces\struct\tree\node\TreenodeInterface; |
7 | use pvc\struct\collection\CollectionOrderedByIndex; |
8 | |
9 | /** |
10 | * @template TreenodeType of TreenodeInterface |
11 | * @extends CollectionOrderedByIndex<TreenodeType> |
12 | * @implements TreenodeChildCollectionInterface<TreenodeType> |
13 | */ |
14 | class TreenodeChildCollection extends CollectionOrderedByIndex implements TreenodeChildCollectionInterface |
15 | { |
16 | |
17 | } |