Passed
Push — master ( cbefbc...3619f4 )
by Frank
16:49 queued 06:49
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
 * @template T of AggregateRoot
11
 *
12
 * @extends EventSourcedAggregateRootRepository<T>
13
 */
14
class ConstructingAggregateRootRepository extends EventSourcedAggregateRootRepository
15
{
16
}
17