Conditions | 1 |
Paths | 1 |
Total Lines | 16 |
Code Lines | 14 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
23 | protected function map(): array |
||
24 | { |
||
25 | return [ |
||
26 | Account::class => [ |
||
27 | 'envelope' => 'user', |
||
28 | 'item' => [ |
||
29 | 'biography' => 'biography', |
||
30 | 'externalUrl' => 'external_url', |
||
31 | 'followedBy' => 'follower_count', |
||
32 | 'follows' => 'following_count', |
||
33 | 'fullName' => 'full_name', |
||
34 | 'id' => 'pk', |
||
35 | 'isPrivate' => 'is_private', |
||
36 | 'profilePicUrl' => 'hd_profile_pic_url_info.url', |
||
37 | 'username' => 'username', |
||
38 | 'media' => 'media_count', |
||
39 | ], |
||
43 | } |