Collection
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 2
Duplicated Lines 0 %

Test Coverage

Coverage 100%

Importance

Changes 1
Bugs 0 Features 1
Metric Value
wmc 0
eloc 2
c 1
b 0
f 1
dl 0
loc 2
ccs 1
cts 1
cp 1
1
<?php
2
declare(strict_types=1);
3
4
namespace Nexendrie\Utils;
5
6
/**
7
 * Collection
8
 *
9
 * @author Jakub Konečný
10
 */
11 1
abstract class Collection implements \ArrayAccess, \Countable, \IteratorAggregate {
12
  use TCollection;
13
}
14
?>