Completed
Push — master ( 53b748...dab7a1 )
by Matthew
03:13
created

LazyCollection::reduce()   A

Complexity

Conditions 2
Paths 2

Size

Total Lines 7
Code Lines 4

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 5
CRAP Score 2

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 2
eloc 4
c 1
b 0
f 0
nc 2
nop 2
dl 0
loc 7
ccs 5
cts 5
cp 1
crap 2
rs 10
1
<?php
2
3
declare(strict_types=1);
4
5
namespace PublishingKit\Utilities\Collections;
6
7
use Countable;
8
use IteratorAggregate;
9
use JsonSerializable;
10
use Generator;
11
use Serializable;
12
use PublishingKit\Utilities\Contracts\Collectable;
13
14
class LazyCollection extends BaseCollection implements Countable, IteratorAggregate, JsonSerializable, Serializable
15
{
16
}
17