for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace AcquiaCloudApi\Response;
class DatabaseNameResponse
{
public string $name;
public function __construct(object $database)
$this->name = $database->name;
}