LdapTools\Security\SecurityDescriptor::setGroup PHP 메소드

setGroup() 공개 메소드

Set the group SID for the security descriptor.
public setGroup ( SID | string $group )
$group SID | string
    public function setGroup($group)
    {
        $this->group = $group instanceof SID ? $group : new SID($group);
        return $this;
    }