mirror of
https://github.com/the-djmaze/snappymail.git
synced 2025-02-10 07:53:44 +08:00
12 lines
173 B
PHP
12 lines
173 B
PHP
|
<?php
|
||
|
|
||
|
namespace Buzz\Client;
|
||
|
|
||
|
interface BatchClientInterface extends ClientInterface
|
||
|
{
|
||
|
/**
|
||
|
* Processes the queued requests.
|
||
|
*/
|
||
|
public function flush();
|
||
|
}
|