| Conditions | 1 |
| Paths | 1 |
| Total Lines | 15 |
| Code Lines | 13 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 8 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 39 | 12 | private function __construct( |
|
| 40 | string $type, |
||
| 41 | string $id, |
||
| 42 | string $shardId, |
||
| 43 | int $score, |
||
| 44 | bool $won, |
||
| 45 | References $participants |
||
| 46 | ) { |
||
| 47 | 12 | $this->type = $type; |
|
| 48 | 12 | $this->id = $id; |
|
| 49 | 12 | $this->shardId = $shardId; |
|
| 50 | 12 | $this->score = $score; |
|
| 51 | 12 | $this->won = $won; |
|
| 52 | 12 | $this->participants = $participants; |
|
| 53 | 12 | } |
|
| 54 | |||
| 76 |