dolibarr/htdocs/includes/stripe/stripe-php/lib/StripeStreamingClientInterface.php

12 lines
238 B
PHP
Raw Normal View History

2024-09-06 20:28:06 +08:00
<?php
namespace Stripe;
/**
* Interface for a Stripe client.
*/
interface StripeStreamingClientInterface extends BaseStripeClientInterface
{
public function requestStream($method, $path, $readBodyChunkCallable, $params, $opts);
}