mirror of
https://github.com/Karaka-Management/Resources.git
synced 2026-01-11 05:18:40 +00:00
21 lines
349 B
PHP
21 lines
349 B
PHP
<?php
|
|
|
|
namespace PayPal\Handler;
|
|
|
|
/**
|
|
* Interface IPayPalHandler
|
|
*
|
|
* @package PayPal\Handler
|
|
*/
|
|
interface IPayPalHandler
|
|
{
|
|
/**
|
|
*
|
|
* @param \Paypal\Core\PayPalHttpConfig $httpConfig
|
|
* @param string $request
|
|
* @param mixed $options
|
|
* @return mixed
|
|
*/
|
|
public function handle($httpConfig, $request, $options);
|
|
}
|