siip-whatsapp-notifications.../vendor/stripe/stripe-php/lib/StripeStreamingClientInterface.php
2024-12-31 09:48:29 +00: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);
}