LdapTools\Security\Ace\Ace::setInheritedObjectType PHP Метод

setInheritedObjectType() публичный Метод

Set the inherited GUID object type this ACE applies to.
public setInheritedObjectType ( GUID | string | null $guid )
$guid LdapTools\Security\GUID | string | null
    public function setInheritedObjectType($guid)
    {
        $this->inheritedObjectType = $guid instanceof GUID || $guid === null ? $guid : new GUID($guid);
        return $this->toggleObjectStatus($guid, AceObjectFlags::FLAG['INHERITED_OBJECT_TYPE_PRESENT']);
    }