Conditions | 1 |
Paths | 1 |
Total Lines | 14 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php declare(strict_types=1); |
||
37 | 18 | public function __construct( |
|
38 | int $id, |
||
39 | string $username, |
||
40 | string $name, |
||
41 | string $state, |
||
42 | string $avatarUrl, |
||
43 | string $webUrl |
||
44 | ) { |
||
45 | 18 | $this->id = $id; |
|
46 | 18 | $this->username = $username; |
|
47 | 18 | $this->name = $name; |
|
48 | 18 | $this->state = $state; |
|
49 | 18 | $this->avatarUrl = $avatarUrl; |
|
50 | 18 | $this->webUrl = $webUrl; |
|
51 | 18 | } |
|
133 |