Conditions | 1 |
Paths | 1 |
Total Lines | 14 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
49 | public function __construct( |
||
50 | string $gameId, |
||
51 | string $playerId, |
||
52 | string $contextType, |
||
53 | string $contextId, |
||
54 | int $score, |
||
55 | string $payload |
||
56 | ) { |
||
57 | $this->gameId = $gameId; |
||
58 | $this->playerId = $playerId; |
||
59 | $this->contextType = $contextType; |
||
60 | $this->contextId = $contextId; |
||
61 | $this->score = $score; |
||
62 | $this->payload = $payload; |
||
63 | } |
||
130 |