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