LdapTools\LdapManager::getObjectManager PHP 메소드

getObjectManager() 보호된 메소드

Retrieve the LdapObjectManager for the current domain context.
protected getObjectManager ( ) : LdapObjectManager
리턴 LdapTools\Object\LdapObjectManager
    protected function getObjectManager()
    {
        if (!isset($this->ldapObjectManager[$this->context])) {
            $this->ldapObjectManager[$this->context] = new LdapObjectManager($this->getConnection(), $this->getSchemaFactory(), $this->config->getEventDispatcher());
        }
        return $this->ldapObjectManager[$this->context];
    }