Files
Chamilo/vendor/stripe/stripe-php/lib/StripeStreamingClientInterface.php
2025-08-14 22:41:49 +02:00

12 lines
238 B
PHP

<?php
namespace Stripe;
/**
* Interface for a Stripe client.
*/
interface StripeStreamingClientInterface extends BaseStripeClientInterface
{
public function requestStream($method, $path, $readBodyChunkCallable, $params, $opts);
}