View file ProForum/Files/application/app/Http/Controllers/Gateway/PaypalSdk/PayPalHttp/Injector.php
<?php
namespace App\Http\Controllers\Gateway\PaypalSdk\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);
}