| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 8 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php declare(strict_types=1); |
||
| 57 | 3 | public static function fromArray(array $user): self |
|
| 58 | { |
||
| 59 | 3 | return new self( |
|
| 60 | 3 | (int)$user['id'], |
|
| 61 | 3 | (string)$user['username'], |
|
| 62 | 3 | (string)$user['name'], |
|
| 63 | 3 | (string)$user['state'], |
|
| 64 | 3 | (string)$user['avatar_url'], |
|
| 65 | 3 | (string)$user['web_url'] |
|
| 66 | ); |
||
| 133 |