Adldap\Objects\DistinguishedName::removeCn PHP Method

removeCn() public method

Removes a common name.
public removeCn ( string $cn ) : DistinguishedName
$cn string
return DistinguishedName
    public function removeCn($cn)
    {
        $this->commonNames = array_diff($this->commonNames, [$cn]);
        return $this;
    }