37372-vm/stripe-php/lib/StripeStreamingClientInterface.php
Flatlogic Bot e78bca6aa4 V.2
2026-01-12 01:02:42 +00: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);
}