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