LdapTools\Ldif\LdifEntryBuilder::moddn PHP Method

moddn() public method

Create a LDIF entry to modify the DN of a LDAP object.
public moddn ( string $dn ) : LdifEntryModDn
$dn string The DN to modify.
return LdapTools\Ldif\Entry\LdifEntryModDn
    public function moddn($dn)
    {
        return new LdifEntryModDn($dn, null, false);
    }