Completed
Push — master ( b87198...f2f319 )
by Frank
02:38
created

BaseAggregateRoot::reconstituteFromEvents()   A

Complexity

Conditions 2
Paths 2

Size

Total Lines 11
Code Lines 5

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 5
CRAP Score 2

Importance

Changes 0
Metric Value
dl 0
loc 11
c 0
b 0
f 0
ccs 5
cts 5
cp 1
rs 9.4285
cc 2
eloc 5
nc 2
nop 2
crap 2
1
<?php
2
3
namespace EventSauce\EventSourcing;
4
5
use EventSauce\EventSourcing\AggregateRootBehaviour\AggregateRootBehaviour;
6
7
abstract class BaseAggregateRoot implements AggregateRoot
8
{
9
    use AggregateRootBehaviour;
10
}