Neos\Neos\Ui\Domain\Model\AbstractChange::reloadDocument PHP Method

reloadDocument() protected method

This method will be triggered if [nodeType].properties.[propertyName].ui.reloadIfChanged is TRUE.
protected reloadDocument ( ) : void
return void
    protected function reloadDocument()
    {
        $nodeService = new NodeService();
        $reloadDocument = new ReloadDocument();
        $reloadDocument->setDocument($nodeService->getClosestDocument($this->getSubject()));
        $this->feedbackCollection->add($reloadDocument);
    }