| Total Complexity | 1 |
| Total Lines | 46 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 5 | class CodebaseResponse |
||
| 6 | { |
||
| 7 | public string $id; |
||
| 8 | |||
| 9 | public string $label; |
||
| 10 | |||
| 11 | public string $region; |
||
| 12 | |||
| 13 | public string $vcs_url; |
||
| 14 | |||
| 15 | public string $repository_id; |
||
| 16 | |||
| 17 | public string $created_at; |
||
| 18 | |||
| 19 | public string $updated_at; |
||
| 20 | |||
| 21 | public string $description; |
||
| 22 | |||
| 23 | public ?object $flags = null; |
||
| 24 | |||
| 25 | public string $hash; |
||
| 26 | |||
| 27 | public int $applications_total; |
||
| 28 | |||
| 29 | public object $links; |
||
| 30 | |||
| 31 | public ?object $embedded = null; |
||
| 32 | |||
| 33 | /** |
||
| 34 | * CodebaseResponse constructor. |
||
| 35 | */ |
||
| 36 | public function __construct(object $codebase) |
||
| 53 |