JFIF x x C C " } !1AQa "q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w !1AQ aq"2B #3Rbr{
File "StripeClientInterface.php"
Full Path: /var/www/laravel_filter/vendor/stripe/stripe-php/lib/StripeClientInterface.php
File size: 601 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace Stripe;
/**
* Interface for a Stripe client.
*/
interface StripeClientInterface extends BaseStripeClientInterface
{
/**
* Sends a request to Stripe's API.
*
* @param 'delete'|'get'|'post' $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);
}