diff options
Diffstat (limited to 'vendor/paypal/paypalhttp/lib/PayPalHttp/Injector.php')
-rw-r--r-- | vendor/paypal/paypalhttp/lib/PayPalHttp/Injector.php | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/vendor/paypal/paypalhttp/lib/PayPalHttp/Injector.php b/vendor/paypal/paypalhttp/lib/PayPalHttp/Injector.php new file mode 100644 index 0000000..3ae23c7 --- /dev/null +++ b/vendor/paypal/paypalhttp/lib/PayPalHttp/Injector.php @@ -0,0 +1,19 @@ +<?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); +} |