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

LazyCollection::makeIterator()   A

Complexity

Conditions 2
Paths 2

Size

Total Lines 6
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 4
CRAP Score 2

Importance

Changes 2
Bugs 0 Features 0
Metric Value
cc 2
eloc 3
c 2
b 0
f 0
nc 2
nop 1
dl 0
loc 6
ccs 4
cts 4
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