mirror of
https://github.com/Karaka-Management/Resources.git
synced 2026-02-08 00:48:40 +00:00
22 lines
586 B
PHP
Executable File
22 lines
586 B
PHP
Executable File
<?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);
|
|
}
|