Conditions | 1 |
Paths | 1 |
Total Lines | 12 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php declare(strict_types=1); |
||
21 | private function __construct( |
||
22 | int $defender, |
||
23 | int $attacker, |
||
24 | int $player, |
||
25 | MatchId $match, |
||
26 | CorrelationId $correlationId |
||
27 | ) { |
||
28 | $this->defender = $defender; |
||
29 | $this->attacker = $attacker; |
||
30 | $this->player = $player; |
||
31 | $this->match = $match; |
||
32 | $this->correlationId = $correlationId; |
||
33 | } |
||
71 |