Method |
Description |
|
__clone ( ) |
When a batch collection is cloned, we want to make sure the batch objects are cloned as well. |
|
__construct ( string | null $dn = null ) |
|
|
add ( Batch $batch ) |
Add an individual batch action to the collection. |
|
get ( integer $index ) : Batch |
Get a specific batch from the collection by its index number in the array. |
|
getBatchArray ( ) : array |
Get an array that represents the array form of each batch action to be sent to LDAP. |
|
getDn ( ) : string |
Get the distinguished name of the LDAP object this batch will target. |
|
getIterator ( ) : ArrayIterator |
Allows this object to be iterated over. |
|
has ( integer $index ) : boolean |
Check if a specific batch index exists. |
|
remove ( integer $index ) : Batch |
Remove a specific batch from the collection by its index number in the array. |
|
setDn ( string $dn ) |
Set the distinguished name of the LDAP object this batch will target. |
|
toArray ( ) : Batch[] |
Get an array containing all the batch action objects. |
|