PATH:
home
/
lab2454c
/
foreclass.com
/
wp-content
/
plugins
/
updraftplus
/
vendor
/
guzzle
/
guzzle
/
src
/
Guzzle
/
Batch
<?php namespace Guzzle\Batch; /** * BatchInterface decorator used to keep a history of items that were added to the batch. You must clear the history * manually to remove items from the history. */ class HistoryBatch extends AbstractBatchDecorator { /** @var array Items in the history */ protected $history = array(); public function add($item) { $this->history[] = $item; $this->decoratedBatch->add($item); return $this; } /** * Get the batch history * * @return array */ public function getHistory() { return $this->history; } /** * Clear the batch history */ public function clearHistory() { $this->history = array(); } }
[-] AbstractBatchDecorator.php
[edit]
[-] composer.json
[edit]
[+]
..
[+]
Exception
[-] FlushingBatch.php
[edit]
[-] ExceptionBufferingBatch.php
[edit]
[-] BatchInterface.php
[edit]
[-] BatchBuilder.php
[edit]
[-] BatchSizeDivisor.php
[edit]
[-] BatchCommandTransfer.php
[edit]
[-] BatchTransferInterface.php
[edit]
[-] NotifyingBatch.php
[edit]
[-] BatchRequestTransfer.php
[edit]
[-] HistoryBatch.php
[edit]
[-] BatchClosureTransfer.php
[edit]
[-] BatchDivisorInterface.php
[edit]
[-] BatchClosureDivisor.php
[edit]
[-] Batch.php
[edit]