LdapTools\BatchModify\BatchCollection::get PHP Method

get() public method

Get a specific batch from the collection by its index number in the array.
public get ( integer $index ) : Batch
$index integer
return Batch
    public function get($index)
    {
        $this->validateBatchIndexExists($index);
        return $this->batches[$index];
    }