Adldap\Objects\DistinguishedName::removeO PHP Method

removeO() public method

Removes an organization name.
public removeO ( string $o ) : DistinguishedName
$o string
return DistinguishedName
    public function removeO($o)
    {
        $this->organizationNames = array_diff($this->organizationNames, [$o]);
        return $this;
    }