Your IP : 216.73.216.220


Current Path : /home/rtorresani/www/vendor/braintree/braintree_php/lib/Braintree/HttpHelpers/
Upload File :
Current File : //home/rtorresani/www/vendor/braintree/braintree_php/lib/Braintree/HttpHelpers/HttpRequest.php

<?php

namespace Braintree\HttpHelpers;

/**
 * Braintree HttpRequest module
 *
 * Facilitates web requests made by the SDK
 */
interface HttpRequest
{
    // phpcs:disable PEAR.Commenting.FunctionComment.Missing
    public function setOption($name, $value);
    public function execute();
    public function getInfo($name);
    public function getErrorCode();
    public function getError();
    public function close();
    // phpcs:enable PEAR.Commenting.FunctionComment.Missing
}