Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Tests | 5 |
CRAP Score | 1 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
29 | 6 | public function __construct( |
|
30 | PlayerId $playerId, |
||
31 | MiniGameId $miniGameId, |
||
32 | $message = "", |
||
33 | $code = 0, |
||
34 | \Exception $previous = null |
||
35 | ) { |
||
36 | 6 | $this->playerId = $playerId; |
|
37 | 6 | $this->miniGameId = $miniGameId; |
|
38 | 6 | parent::__construct($message, $code, $previous); |
|
39 | 6 | } |
|
40 | |||
57 |