Passed
Pull Request — master (#84)
by Frank
07:02
created

ConstructingAggregateRootRepository::persistEvents()   A

Complexity

Conditions 2
Paths 2

Size

Total Lines 20
Code Lines 11

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 9
CRAP Score 2

Importance

Changes 2
Bugs 1 Features 0
Metric Value
cc 2
eloc 11
nc 2
nop 3
dl 0
loc 20
ccs 9
cts 9
cp 1
crap 2
rs 9.9
c 2
b 1
f 0
1
<?php
2
3
declare(strict_types=1);
4
5
namespace EventSauce\EventSourcing;
6
7
/**
8
 * @deprecated use EventSourcedAggregateRootRepository::class instead
9
 */
10
class ConstructingAggregateRootRepository extends EventSourcedAggregateRootRepository
11
{
12
}
13