Files
clouddesk/class/payment/stripe/lib/StripeStreamingClientInterface.php
T

12 lines
238 B
PHP
Raw Normal View History

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