Total Complexity | 1 |
Total Lines | 40 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
5 | class InvitationResponse |
||
6 | { |
||
7 | public string $uuid; |
||
8 | |||
9 | public string $email; |
||
10 | |||
11 | public MemberResponse $author; |
||
12 | |||
13 | public object $applications; |
||
14 | |||
15 | public object $organization; |
||
16 | |||
17 | /** |
||
18 | * @var array<object> $roles |
||
19 | */ |
||
20 | public array $roles; |
||
21 | |||
22 | public TeamResponse $team; |
||
23 | |||
24 | public string $created_at; |
||
25 | |||
26 | public string $token; |
||
27 | |||
28 | public object $flags; |
||
29 | |||
30 | public object $links; |
||
31 | |||
32 | public function __construct(object $invitation) |
||
47 |