Conditions | 1 |
Paths | 1 |
Total Lines | 14 |
Code Lines | 12 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
43 | 21 | public function __construct( |
|
44 | MiniGameId $gameId, |
||
45 | PlayerId $playerId, |
||
46 | $letter, |
||
47 | array $playedLetters, |
||
48 | $livesLost, |
||
49 | $remainingLives, |
||
50 | $wordSoFar |
||
51 | ) { |
||
52 | 21 | parent::__construct(self::NAME, $gameId, $playerId, $playedLetters, $remainingLives); |
|
53 | 21 | $this->letter = $letter; |
|
54 | 21 | $this->livesLost = $livesLost; |
|
55 | 21 | $this->wordSoFar = $wordSoFar; |
|
56 | 21 | } |
|
57 | |||
90 |