mirror of
https://github.com/Karaka-Management/Resources.git
synced 2026-02-03 23:08:40 +00:00
12 lines
238 B
PHP
Executable File
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);
|
|
}
|