Initial commit

This commit is contained in:
2026-03-01 04:20:18 +00:00
commit 894732e8a2
9879 changed files with 878945 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
<?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);
}