Skip to content

Commit

Permalink
Fixup getEnvironmentsDatabases (#349)
Browse files Browse the repository at this point in the history
  • Loading branch information
danepowell authored Mar 9, 2023
1 parent 642b23e commit 2d33faa
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/Response/DatabaseResponse.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,10 @@ public function __construct(object $database)
$this->name = $database->name;
$this->user_name = $database->user_name;
$this->password = $database->password;
$this->url = $database->url;
$this->db_host = $database->db_host;
$this->ssh_host = $database->ssh_host;
$this->flags = $database->flags;
$this->environment = $database->environment;
}
}

0 comments on commit 2d33faa

Please sign in to comment.