Files
kulakpos_web/vendor/stripe/stripe-php/lib/StripeStreamingClientInterface.php

12 lines
238 B
PHP
Raw Permalink Normal View History

2026-03-30 14:54:57 +07:00
<?php
namespace Stripe;
/**
* Interface for a Stripe client.
*/
interface StripeStreamingClientInterface extends BaseStripeClientInterface
{
public function requestStream($method, $path, $readBodyChunkCallable, $params, $opts);
}