Current path: home/webdevt/www/demo2/wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Batch/
?? Go up: /home/webdevt/www/demo2/wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle
<?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);
}