LdapTools\LdapManager::createLdapObject PHP Метод

createLdapObject() публичный Метод

Get a LdapObjectCreator object.
public createLdapObject ( string | null $type = null ) : LdapObjectCreator
$type string | null
Результат LdapTools\Object\LdapObjectCreator
    public function createLdapObject($type = null)
    {
        $creator = new LdapObjectCreator($this->getConnection(), $this->getSchemaFactory(), $this->config->getEventDispatcher());
        if ($type) {
            $creator->create($type);
        }
        return $creator;
    }