LdapTools\LdapManager::move PHP Method

move() public method

Move an object in LDAP from one container/OU to another.
public move ( LdapObject $ldapObject, string $container )
$ldapObject LdapTools\Object\LdapObject
$container string The container/OU in DN format.
    public function move(LdapObject $ldapObject, $container)
    {
        $this->getObjectManager()->move($ldapObject, $container);
        return $this;
    }