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