eZ\Publish\Core\Repository\Values\User\PolicyDraft::__set PHP Method

__set() public method

public __set ( $property, $propertyValue )
    public function __set($property, $propertyValue)
    {
        if (isset($this->draftProperties[$property])) {
            parent::__set($property, $propertyValue);
        }
        $this->innerPolicy->{$property} = $propertyValue;
    }