diff options
Diffstat (limited to 'apps/files_external/3rdparty/aws-sdk-php/Guzzle/Batch/BatchInterface.php')
-rw-r--r-- | apps/files_external/3rdparty/aws-sdk-php/Guzzle/Batch/BatchInterface.php | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Batch/BatchInterface.php b/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Batch/BatchInterface.php deleted file mode 100644 index 28ea65c800a..00000000000 --- a/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Batch/BatchInterface.php +++ /dev/null @@ -1,32 +0,0 @@ -<?php - -namespace Guzzle\Batch; - -/** - * Interface for efficiently transferring items in a queue using batches - */ -interface BatchInterface -{ - /** - * Add an item to the queue - * - * @param mixed $item Item to add - * - * @return self - */ - public function add($item); - - /** - * Flush the batch and transfer the items - * - * @return array Returns an array flushed items - */ - public function flush(); - - /** - * Check if the batch is empty and has further items to transfer - * - * @return bool - */ - public function isEmpty(); -} |