Conditions | 1 |
Paths | 1 |
Total Lines | 7 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 1 |
Changes | 4 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
40 | 78 | public function __construct(MiniGameId $gameId, PlayerId $playerId, $playerName, $lives, $externalReference) |
|
41 | { |
||
42 | 78 | parent::__construct(self::NAME, $gameId, $playerId); |
|
43 | 78 | $this->playerName = $playerName; |
|
44 | 78 | $this->lives = $lives; |
|
45 | 78 | $this->externalReference = $externalReference; |
|
46 | 78 | } |
|
47 | |||
72 |