File "Injector.php"
Full Path: /home/cananyalcin/public_html/core/lib/paypal/paypal/paypalhttp/lib/PayPalHttp/Injector.php
File size: 300 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace PayPalHttp;
/**
* Interface Injector
* @package PayPalHttp
*
* Interface that can be implemented to apply injectors to Http client.
*
* @see HttpClient
*/
interface Injector
{
/**
* @param $httpRequest HttpRequest
*/
public function inject($httpRequest);
}