Files
pancake/system/vendor/stripe/stripe-php/lib/StripeStreamingClientInterface.php
Tim Bendt 6b9ef7ca55 first
2025-11-25 00:16:35 -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);
}