www.lightcourse.com/vendor/stripe/stripe-php/lib/StripeStreamingClientInterf...

12 lines
238 B
PHP
Raw Normal View History

2022-10-24 03:17:43 +00:00
<?php
namespace Stripe;
/**
* Interface for a Stripe client.
*/
interface StripeStreamingClientInterface extends BaseStripeClientInterface
{
public function requestStream($method, $path, $readBodyChunkCallable, $params, $opts);
}