Files
bendtstudio0-static/pancake/system/vendor/stripe/stripe-php/lib/StripeStreamingClientInterface.php
2025-11-26 13:22:58 -05:00

12 lines
238 B
PHP
Executable File

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