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;
    }