AbstractCollection
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 4
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Test Coverage

Coverage 0%

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 0
c 1
b 0
f 0
lcom 0
cbo 0
dl 0
loc 4
ccs 0
cts 0
cp 0
1
<?php
2
3
// Copyright (c) Lellys Informática. All rights reserved. See License.txt in the project root for license information.
4
namespace Collections;
5
6
use Collections\Comparer\NumericKeyComparer;
7
use Collections\Generic\ComparerInterface;
8
use Easy\Generics\EquatableInterface;
9
10
/**
11
 * Provides the abstract base class for a strongly typed collection.
12
 */
13
abstract class AbstractCollection implements EquatableInterface
14
{
15
    
16
}
17