| Total Complexity | 1 |
| Total Lines | 25 |
| Duplicated Lines | 0 % |
| Changes | 5 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 5 | class DatabaseResponse |
||
| 6 | { |
||
| 7 | public string $id; |
||
| 8 | public string $name; |
||
| 9 | // Connection details will be missing without the required permission: |
||
| 10 | // "View database connection details (username, password, or hostname)" |
||
| 11 | public ?string $user_name; |
||
| 12 | public ?string $password; |
||
| 13 | public ?string $url; |
||
| 14 | public string $db_host; |
||
| 15 | public ?string $ssh_host; |
||
| 16 | public object $flags; |
||
| 17 | public object $environment; |
||
| 18 | |||
| 19 | public function __construct(object $database) |
||
| 32 |