mirror of
https://github.com/retailcrm/mailgun-php.git
synced 2024-11-26 23:06:06 +03:00
17 lines
284 B
PHP
17 lines
284 B
PHP
<?php
|
|
|
|
namespace Guzzle\Batch;
|
|
|
|
/**
|
|
* Interface used for transferring batches of items
|
|
*/
|
|
interface BatchTransferInterface
|
|
{
|
|
/**
|
|
* Transfer an array of items
|
|
*
|
|
* @param array $batch Array of items to transfer
|
|
*/
|
|
public function transfer(array $batch);
|
|
}
|