mirror of
https://github.com/itflow-org/itflow
synced 2026-03-27 07:45:37 +00:00
Re-add stripe php library v 10.5.0, git errored because it had it's own git folder
This commit is contained in:
21
vendor/stripe-php-10.5.0/lib/StripeClientInterface.php
vendored
Normal file
21
vendor/stripe-php-10.5.0/lib/StripeClientInterface.php
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
namespace Stripe;
|
||||
|
||||
/**
|
||||
* Interface for a Stripe client.
|
||||
*/
|
||||
interface StripeClientInterface extends BaseStripeClientInterface
|
||||
{
|
||||
/**
|
||||
* Sends a request to Stripe's API.
|
||||
*
|
||||
* @param string $method the HTTP method
|
||||
* @param string $path the path of the request
|
||||
* @param array $params the parameters of the request
|
||||
* @param array|\Stripe\Util\RequestOptions $opts the special modifiers of the request
|
||||
*
|
||||
* @return \Stripe\StripeObject the object returned by Stripe's API
|
||||
*/
|
||||
public function request($method, $path, $params, $opts);
|
||||
}
|
||||
Reference in New Issue
Block a user