| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 2 |
| Changes | 0 | ||
| 1 | <?php |
||
| 16 | public function transform($profile): array |
||
| 17 | { |
||
| 18 | return [ |
||
| 19 | "email" => $profile->email, |
||
| 20 | "name" => $profile->name, |
||
| 21 | "gender" => $profile->gender ?? 'unknown', |
||
| 22 | "username" => $profile->nickname ?? "stranger", |
||
| 23 | "avatar" => $profile->picture, |
||
| 24 | "email_verified" => $profile->email_verified, |
||
| 25 | ]; |
||
| 29 |