Total Complexity | 2 |
Total Lines | 35 |
Duplicated Lines | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
5 | class NotificationResponse |
||
6 | { |
||
7 | public string $uuid; |
||
8 | |||
9 | public string $event; |
||
10 | |||
11 | public string $label; |
||
12 | |||
13 | public string $description; |
||
14 | |||
15 | public string $created_at; |
||
16 | |||
17 | public ?string $completed_at; |
||
18 | |||
19 | public string $status; |
||
20 | |||
21 | public int $progress; |
||
22 | |||
23 | public object $context; |
||
24 | |||
25 | public ?object $links; |
||
26 | |||
27 | public function __construct(object $notification) |
||
43 |