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
3namespace pvc\struct\tree\node;
4
5use pvc\interfaces\struct\tree\node\TreenodeChildCollectionInterface;
6use pvc\interfaces\struct\tree\node\TreenodeInterface;
7use pvc\struct\collection\CollectionOrderedByIndex;
8
9/**
10 * @template TreenodeType of TreenodeInterface
11 * @extends CollectionOrderedByIndex<TreenodeType>
12 * @implements TreenodeChildCollectionInterface<TreenodeType>
13 */
14class TreenodeChildCollection extends CollectionOrderedByIndex implements TreenodeChildCollectionInterface
15{
16
17}