LdapTools\BatchModify\BatchCollection::remove PHP Method

remove() public method

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