/
var
/
www
/
barefootlaw.org
/
wp-content
/
plugins
/
updraftplus
/
vendor
/
guzzle
/
guzzle
/
src
/
Guzzle
/
Batch
/
Upload File
HOME
<?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); }