for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace HopekellDev\Tatum\Helpers;
class VirtualAccount
{
protected $apiKey;
protected $accountID;
protected $baseUrl;
/**
* Construct
*/
function __construct(String $apiKey, String $accountID, String $baseUrl)
$this->apiKey = $apiKey;
$this->accountID = $accountID;
$this->baseUrl = $baseUrl;
}