CollectionInterface
last analyzed

Size/Duplication

Total Lines 8
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 8
1
<?php
2
namespace TRex\Collection;
3
4
interface CollectionInterface extends CollectionComparatorInterface,
0 ignored issues
show
Coding Style introduced by
The first item in a multi-line extends list must be on the line following the extends keyword
Loading history...
5
    CollectionFilterInterface,
6
    CollectionKeyAccessorInterface,
7
    CollectionSorterInterface,
8
    CollectionValueAccessorInterface
9
{
10
11
}
12