LdapTools\LdapManager::getObjectManager PHP Méthode

getObjectManager() protected méthode

Retrieve the LdapObjectManager for the current domain context.
protected getObjectManager ( ) : LdapObjectManager
Résultat 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];
    }