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 | 42 | public static function fromArray(array $user): self |
|
58 | { |
||
59 | 42 | return new self( |
|
60 | 42 | (int)$user['id'], |
|
61 | 42 | (string)$user['username'], |
|
62 | 42 | (string)$user['name'], |
|
63 | 42 | (string)$user['state'], |
|
64 | 42 | (string)$user['avatar_url'], |
|
65 | 42 | (string)$user['web_url'] |
|
66 | ); |
||
133 |