Adldap\Objects\DistinguishedName::removeOu PHP Method

removeOu() public method

Removes an organizational unit.
public removeOu ( string $ou ) : DistinguishedName
$ou string
return DistinguishedName
    public function removeOu($ou)
    {
        $this->organizationUnits = array_diff($this->organizationUnits, [$ou]);
        return $this;
    }