LdapTools\Object\LdapObjectCreator::execute PHP Method

execute() public method

Add the object with the selected attributes into LDAP.
public execute ( )
    public function execute()
    {
        $this->triggerBeforeCreationEvent();
        $operation = $this->getAddOperation()->setServer($this->server);
        $this->connection->execute($operation);
        $this->triggerAfterCreationEvent($operation);
    }