for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace AcquiaCloudApi\Endpoints;
use AcquiaCloudApi\Connector\ClientInterface;
/**
* Class CloudApiBase
*
* @package AcquiaCloudApi\CloudApi
*/
abstract class CloudApiBase implements CloudApiInterface
{
* @var ClientInterface The API client.
protected ClientInterface $client;
* Client constructor.
public function __construct(ClientInterface $client)
$this->client = $client;
}