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