| 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 | 3 | public function __construct( |
|
| 38 | int $id, |
||
| 39 | string $username, |
||
| 40 | string $name, |
||
| 41 | string $state, |
||
| 42 | string $avatarUrl, |
||
| 43 | string $webUrl |
||
| 44 | ) { |
||
| 45 | 3 | $this->id = $id; |
|
| 46 | 3 | $this->username = $username; |
|
| 47 | 3 | $this->name = $name; |
|
| 48 | 3 | $this->state = $state; |
|
| 49 | 3 | $this->avatarUrl = $avatarUrl; |
|
| 50 | 3 | $this->webUrl = $webUrl; |
|
| 51 | 3 | } |
|
| 133 |