LdapTools\Hydrator\OperationHydrator::hydrateOperation PHP 메소드

hydrateOperation() 보호된 메소드

protected hydrateOperation ( LdapTools\Operation\LdapOperationInterface $operation ) : LdapTools\Operation\LdapOperationInterface
$operation LdapTools\Operation\LdapOperationInterface
리턴 LdapTools\Operation\LdapOperationInterface
    protected function hydrateOperation(LdapOperationInterface $operation)
    {
        if ($operation instanceof BatchModifyOperation) {
            $this->setOperationType(AttributeConverterInterface::TYPE_MODIFY);
            $this->hydrateModifyOperation($operation);
        } elseif ($operation instanceof AddOperation) {
            $this->setOperationType(AttributeConverterInterface::TYPE_CREATE);
            $this->hydrateAddOperation($operation);
        } elseif ($operation instanceof QueryOperation) {
            $this->setOperationType(AttributeConverterInterface::TYPE_SEARCH_TO);
            $this->hydrateQueryOperation($operation);
        }
        return $operation;
    }