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

LazyCollection::filter()   A

Complexity

Conditions 4
Paths 2

Size

Total Lines 11
Code Lines 7

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 7
CRAP Score 4

Importance

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