ConstructingAggregateRootRepository
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 2
Duplicated Lines 0 %

Test Coverage

Coverage 0%

Importance

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