Completed
Pull Request — master (#366)
by Beñat
05:22
created

Stream   A

Complexity

Total Complexity 3

Size/Duplication

Total Lines 21
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 0
Metric Value
wmc 3
lcom 0
cbo 0
dl 0
loc 21
rs 10
c 0
b 0
f 0

3 Methods

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 5 1
A name() 0 4 1
A events() 0 4 1
1
<?php
2
3
/*
4
 * This file is part of the Kreta package.
5
 *
6
 * (c) Beñat Espiña <[email protected]>
7
 * (c) Gorka Laucirica <[email protected]>
8
 *
9
 * For the full copyright and license information, please view the LICENSE
10
 * file that was distributed with this source code.
11
 */
12
13
declare(strict_types=1);
14
15
namespace Kreta\SharedKernel\Event;
16
17
use Kreta\SharedKernel\Domain\Model\DomainEventCollection;
18
19
class Stream
20
{
21
    private $name;
22
    private $events;
23
24
    public function __construct(StreamName $name, DomainEventCollection $events)
25
    {
26
        $this->name = $name;
27
        $this->events = $events;
28
    }
29
30
    public function name() : StreamName
31
    {
32
        return $this->name;
33
    }
34
35
    public function events() : DomainEventCollection
36
    {
37
        return $this->events;
38
    }
39
}
40