12 lines
166 B
PHP
Executable File
12 lines
166 B
PHP
Executable File
<?php
|
|
|
|
namespace Buzz\Client;
|
|
|
|
interface BatchClientInterface extends ClientInterface
|
|
{
|
|
/**
|
|
* Processes the queued requests.
|
|
*/
|
|
function flush();
|
|
}
|