Adldap\Objects\DistinguishedName::removeDc PHP Méthode

removeDc() public méthode

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