2021-03-01 10:07:03 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace PayPalHttp;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Interface Injector
|
|
|
|
* @package PayPalHttp
|
|
|
|
*
|
|
|
|
* Interface that can be implemented to apply injectors to Http client.
|
|
|
|
*
|
|
|
|
* @see HttpClient
|
|
|
|
*/
|
|
|
|
interface Injector
|
|
|
|
{
|
|
|
|
/**
|
2021-12-08 09:29:40 +01:00
|
|
|
* @param HttpRequest $httpRequest
|
2021-03-01 10:07:03 +01:00
|
|
|
*/
|
|
|
|
public function inject($httpRequest);
|
|
|
|
}
|