1 <?php
2
3 namespace PayPal\Handler;
4
5 /**
6 * Interface IPayPalHandler
7 *
8 * @package PayPal\Handler
9 */
10 interface IPayPalHandler
11 {
12 /**
13 *
14 * @param \Paypal\Core\PayPalHttpConfig $httpConfig
15 * @param string $request
16 * @param mixed $options
17 * @return mixed
18 */
19 public function handle($httpConfig, $request, $options);
20 }
21