• File: BatchTransferInterface.php
  • Full Path: /home/atelipy/www/wpmain/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Batch/BatchTransferInterface.php
  • File size: 284 bytes
  • MIME-type: text/x-php
  • Charset: utf-8
<?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);
}