| Total Complexity | 6 |
| Total Lines | 45 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 5 | class MemberResponse |
||
| 6 | { |
||
| 7 | public string $uuid; |
||
| 8 | |||
| 9 | /** |
||
| 10 | * @var TeamsResponse<TeamResponse>|null $teams |
||
| 11 | */ |
||
| 12 | public ?TeamsResponse $teams; |
||
| 13 | |||
| 14 | public string $first_name; |
||
| 15 | |||
| 16 | public string $last_name; |
||
| 17 | |||
| 18 | public ?string $mail; |
||
| 19 | |||
| 20 | public string $picture_url; |
||
| 21 | |||
| 22 | public string $username; |
||
| 23 | |||
| 24 | public ?object $flags; |
||
| 25 | |||
| 26 | public ?object $links; |
||
| 27 | |||
| 28 | public function __construct(object $member) |
||
| 53 |