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

__get() public method

public __get ( $property )
    public function __get($property)
    {
        if (isset($this->draftProperties[$property])) {
            return parent::__get($property);
        }
        return $this->innerPolicy->{$property};
    }