Completed
Push — master ( 4b1e3c...30d3d2 )
by Jesse
02:57
created

CardWasDrawn   A

Complexity

Total Complexity 5

Size/Duplication

Total Lines 31
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 11
dl 0
loc 31
rs 10
c 0
b 0
f 0
wmc 5

5 Methods

Rating   Name   Duplication   Size   Complexity  
A match() 0 3 1
A card() 0 3 1
A player() 0 3 1
A __construct() 0 5 1
A aggregateId() 0 3 1
1
<?php declare(strict_types=1);
2
3
namespace Stratadox\CardGame\Match\Event;
4
5
use Stratadox\CardGame\Deck\CardId;
6
use Stratadox\CardGame\Match\MatchEvent;
7
use Stratadox\CardGame\Match\MatchId;
8
9
final class CardWasDrawn implements MatchEvent
10
{
11
    private $match;
12
    private $player;
13
    private $card;
14
15
    public function __construct(MatchId $match, CardId $card, int $player)
16
    {
17
        $this->match = $match;
18
        $this->card = $card;
19
        $this->player = $player;
20
    }
21
22
    public function aggregateId(): MatchId
23
    {
24
        return $this->match;
25
    }
26
27
    public function match(): MatchId
28
    {
29
        return $this->aggregateId();
30
    }
31
32
    public function player(): int
33
    {
34
        return $this->player;
35
    }
36
37
    public function card(): CardId
38
    {
39
        return $this->card;
40
    }
41
}
42