| Conditions | 1 |
| Paths | 1 |
| Total Lines | 17 |
| Code Lines | 15 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 9 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 44 | 3 | private function __construct( |
|
| 45 | string $type, |
||
| 46 | string $id, |
||
| 47 | string $name, |
||
| 48 | string $patchVersion, |
||
| 49 | string $shardId, |
||
| 50 | ?string $stats, |
||
| 51 | string $titleId |
||
| 52 | ) { |
||
| 53 | 3 | $this->type = $type; |
|
| 54 | 3 | $this->id = $id; |
|
| 55 | 3 | $this->name = $name; |
|
| 56 | 3 | $this->patchVersion = $patchVersion; |
|
| 57 | 3 | $this->shardId = $shardId; |
|
| 58 | 3 | $this->stats = $stats; |
|
| 59 | 3 | $this->titleId = $titleId; |
|
| 60 | 3 | } |
|
| 61 | |||
| 83 |