getDn() публичный Метод

The distinguished name for an add, delete, or move operation.
public getDn ( ) : null | string
Результат null | string
Пример #1
0
 /**
  * @param BatchModifyOperation $operation
  * @return BatchModifyOperation
  */
 protected function hydrateModifyOperation(BatchModifyOperation $operation)
 {
     $batches = $this->convertValuesToLdap($operation->getBatchCollection(), $operation->getDn());
     foreach ($batches as $batch) {
         /** @var \LdapTools\BatchModify\Batch $batch */
         $batch->setAttribute($this->schema->getAttributeToLdap($batch->getAttribute()));
     }
     return $operation;
 }