LdapTools\Object\LdapObjectManager::hydrateOperation PHP Метод

hydrateOperation() защищенный Метод

Get the batch modification array that ldap_modify_batch expects.
protected hydrateOperation ( BatchModifyOperation $operation, string $type )
$operation LdapTools\Operation\BatchModifyOperation
$type string
    protected function hydrateOperation(BatchModifyOperation $operation, $type)
    {
        $this->hydrator->setOperationType(AttributeConverterInterface::TYPE_MODIFY);
        if ($type) {
            $this->hydrator->setLdapObjectSchema($this->schemaFactory->get($this->connection->getConfig()->getSchemaName(), $type));
        }
        $this->hydrator->hydrateToLdap($operation);
        if ($type) {
            $this->hydrator->setLdapObjectSchema(null);
        }
    }