Conditions | 1 |
Paths | 1 |
Total Lines | 12 |
Code Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Tests | 5 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
37 | 30 | public function __construct( |
|
38 | MiniGameId $gameId, |
||
39 | PlayerId $playerId, |
||
40 | array $playedLetters, |
||
41 | $remainingLives, |
||
42 | $wordFound, |
||
43 | $word |
||
44 | ) { |
||
45 | 30 | parent::__construct(self::NAME, $gameId, $playerId, $playedLetters, $remainingLives); |
|
46 | 30 | $this->wordFound = $wordFound; |
|
47 | 30 | $this->word = $word; |
|
48 | 30 | } |
|
49 | |||
74 |