Conditions | 1 |
Paths | 1 |
Total Lines | 12 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
33 | 4 | public function __construct( |
|
34 | string $profileId, |
||
35 | string $profileName, |
||
36 | array $textures, |
||
37 | int $timestamp, |
||
38 | bool $signatureRequired = false |
||
39 | ) { |
||
40 | 4 | $this->id = $profileId; |
|
41 | 4 | $this->username = $profileName; |
|
42 | 4 | $this->textures = $textures; |
|
43 | 4 | $this->timestamp = (int)floor($timestamp / 1000); |
|
44 | 4 | $this->signatureRequired = $signatureRequired; |
|
45 | 4 | } |
|
91 |