Total Complexity | 2 |
Total Lines | 39 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
7 | class InsightResponse |
||
8 | { |
||
9 | public string $uuid; |
||
10 | |||
11 | public string $label; |
||
12 | |||
13 | public string $hostname; |
||
14 | |||
15 | public string $status; |
||
16 | |||
17 | public string $updatedAt; |
||
18 | |||
19 | public string $lastConnectedAt; |
||
20 | |||
21 | public object $scores; |
||
22 | |||
23 | public object $counts; |
||
24 | |||
25 | public object $flags; |
||
26 | |||
27 | public object $links; |
||
28 | |||
29 | public function __construct(object $insight) |
||
48 |