| Total Complexity | 2 |
| Total Lines | 35 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 9 | class CodebaseResponse |
||
| 10 | { |
||
| 11 | public $id; |
||
| 12 | public $label; |
||
| 13 | public $region; |
||
| 14 | public $vcs_url; |
||
| 15 | public $repository_id; |
||
| 16 | public $created_at; |
||
| 17 | public $updated_at; |
||
| 18 | public $description; |
||
| 19 | public $flags; |
||
| 20 | public $hash; |
||
| 21 | public $applications_total; |
||
| 22 | public $links; |
||
| 23 | public $embedded; |
||
| 24 | |||
| 25 | /** |
||
| 26 | * CodebaseResponse constructor. |
||
| 27 | * @param object $codebase |
||
| 28 | */ |
||
| 29 | public function __construct($codebase) |
||
| 46 |