/home/desid573/public_html/app/braintree/lib/Braintree
Edit: /home/desid573/public_html/app/braintree/lib/Braintree/PlanGateway.php (820B)
_gateway = $gateway;
$this->_config = $gateway->config;
$this->_config->assertHasAccessTokenOrKeys();
$this->_http = new Http($gateway->config);
}
public function all()
{
$path = $this->_config->merchantPath() . '/plans';
$response = $this->_http->get($path);
if (key_exists('plans', $response)){
$plans = ["plan" => $response['plans']];
} else {
$plans = ["plan" => []];
}
return Util::extractAttributeAsArray(
$plans,
'plan'
);
}
}
class_alias('Braintree\PlanGateway', 'Braintree_PlanGateway');