Snapshot   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 12
Duplicated Lines 0 %

Test Coverage

Coverage 100%

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 5
c 1
b 0
f 0
dl 0
loc 12
ccs 3
cts 3
cp 1
rs 10
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 4 1
1
<?php
2
3
/**
4
 * Event Sourcing implementation.
5
 *
6
 * @author  Maksim Masiukevich <[email protected]>
7
 * @license MIT
8
 * @license https://opensource.org/licenses/MIT
9
 */
10
11
declare(strict_types = 1);
12
13
namespace ServiceBus\EventSourcing\Snapshots;
14
15
use ServiceBus\EventSourcing\Aggregate;
16
17
/**
18
 * @psalm-readonly
19
 */
20
final class Snapshot
21
{
22
    /** @var Aggregate  */
23
    public $aggregate;
24
25
    /** @var int  */
26
    public $version;
27
28 7
    public function __construct(Aggregate $aggregate, int $version)
29
    {
30 7
        $this->aggregate = $aggregate;
31 7
        $this->version   = $version;
32 7
    }
33
}
34