Adldap\Objects\DistinguishedName::removeDc PHP Method

removeDc() public method

Removes a domain component.
public removeDc ( string $dc ) : DistinguishedName
$dc string
return DistinguishedName
    public function removeDc($dc)
    {
        $this->domainComponents = array_diff($this->domainComponents, [$dc]);
        return $this;
    }