Passed
Push — master ( cbefbc...3619f4 )
by Frank
16:49 queued 06:49
created

ConstructingAggregateRootRepository::retrieveAllEvents()   A

Complexity

Conditions 2
Paths 2

Size

Total Lines 10
Code Lines 4

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 6
CRAP Score 2

Importance

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