Adldap\Objects\DistinguishedName::removeO PHP 메소드

removeO() 공개 메소드

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