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